-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
admonition, obsidian, and p2bt things
- Loading branch information
Showing
30 changed files
with
444 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"accentColor": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[ | ||
"obsidian-markdown-file-suffix" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"file-explorer": true, | ||
"global-search": true, | ||
"switcher": true, | ||
"graph": true, | ||
"backlink": true, | ||
"canvas": true, | ||
"outgoing-link": true, | ||
"tag-pane": true, | ||
"properties": false, | ||
"page-preview": true, | ||
"daily-notes": true, | ||
"templates": true, | ||
"note-composer": true, | ||
"command-palette": true, | ||
"slash-command": false, | ||
"editor-status": true, | ||
"bookmarks": true, | ||
"markdown-importer": false, | ||
"zk-prefixer": false, | ||
"random-note": false, | ||
"outline": true, | ||
"word-count": true, | ||
"slides": false, | ||
"audio-recorder": false, | ||
"workspaces": false, | ||
"file-recovery": true, | ||
"publish": false, | ||
"sync": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
"file-explorer", | ||
"global-search", | ||
"switcher", | ||
"graph", | ||
"backlink", | ||
"canvas", | ||
"outgoing-link", | ||
"tag-pane", | ||
"page-preview", | ||
"daily-notes", | ||
"templates", | ||
"note-composer", | ||
"command-palette", | ||
"editor-status", | ||
"bookmarks", | ||
"outline", | ||
"word-count", | ||
"file-recovery" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD | ||
if you want to view the source, please visit the github repository of this plugin | ||
*/ | ||
|
||
var __defProp = Object.defineProperty; | ||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | ||
var __getOwnPropNames = Object.getOwnPropertyNames; | ||
var __getProtoOf = Object.getPrototypeOf; | ||
var __hasOwnProp = Object.prototype.hasOwnProperty; | ||
var __reflectGet = Reflect.get; | ||
var __export = (target, all) => { | ||
for (var name in all) | ||
__defProp(target, name, { get: all[name], enumerable: true }); | ||
}; | ||
var __copyProps = (to, from, except, desc) => { | ||
if (from && typeof from === "object" || typeof from === "function") { | ||
for (let key of __getOwnPropNames(from)) | ||
if (!__hasOwnProp.call(to, key) && key !== except) | ||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | ||
} | ||
return to; | ||
}; | ||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); | ||
var __superGet = (cls, obj, key) => __reflectGet(__getProtoOf(cls), key, obj); | ||
var __async = (__this, __arguments, generator) => { | ||
return new Promise((resolve, reject) => { | ||
var fulfilled = (value) => { | ||
try { | ||
step(generator.next(value)); | ||
} catch (e) { | ||
reject(e); | ||
} | ||
}; | ||
var rejected = (value) => { | ||
try { | ||
step(generator.throw(value)); | ||
} catch (e) { | ||
reject(e); | ||
} | ||
}; | ||
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected); | ||
step((generator = generator.apply(__this, __arguments)).next()); | ||
}); | ||
}; | ||
|
||
// main.ts | ||
var main_exports = {}; | ||
__export(main_exports, { | ||
default: () => MarkdownSuffixPlugin | ||
}); | ||
module.exports = __toCommonJS(main_exports); | ||
var import_obsidian = require("obsidian"); | ||
var MarkdownSuffixPlugin = class extends import_obsidian.Plugin { | ||
onload() { | ||
return __async(this, null, function* () { | ||
__superGet(MarkdownSuffixPlugin.prototype, this, "onload").call(this); | ||
this.registerExtensions(["mdx", "svx"], "markdown"); | ||
}); | ||
} | ||
}; |
10 changes: 10 additions & 0 deletions
10
.obsidian/plugins/obsidian-markdown-file-suffix/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"id": "obsidian-markdown-file-suffix", | ||
"name": "Addional Markdown suffix (.mdx/.svx).", | ||
"version": "1.0.0", | ||
"minAppVersion": "0.10.12", | ||
"description": "Use additional files like .mdx / .svx as if they were markdown.", | ||
"author": "swissmation", | ||
"authorUrl": "https://github.com/swissmation", | ||
"isDesktopOnly": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* | ||
This CSS file will be included with your plugin, and | ||
available in the app when your plugin is enabled. | ||
If your plugin does not need CSS, delete this file. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
{ | ||
"main": { | ||
"id": "0d6fd9acaf7f7e39", | ||
"type": "split", | ||
"children": [ | ||
{ | ||
"id": "19930add4f1fc9c2", | ||
"type": "tabs", | ||
"children": [ | ||
{ | ||
"id": "632f257a686245ce", | ||
"type": "leaf", | ||
"state": { | ||
"type": "empty", | ||
"state": {} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"direction": "vertical" | ||
}, | ||
"left": { | ||
"id": "f06e118a3db12532", | ||
"type": "split", | ||
"children": [ | ||
{ | ||
"id": "39be5bcf0598647f", | ||
"type": "tabs", | ||
"children": [ | ||
{ | ||
"id": "b6fc5290919b9d05", | ||
"type": "leaf", | ||
"state": { | ||
"type": "file-explorer", | ||
"state": { | ||
"sortOrder": "alphabetical" | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "a12b281db7288585", | ||
"type": "leaf", | ||
"state": { | ||
"type": "search", | ||
"state": { | ||
"query": "", | ||
"matchingCase": false, | ||
"explainSearch": false, | ||
"collapseAll": false, | ||
"extraContext": false, | ||
"sortOrder": "alphabetical" | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "dba4a164d07d4cee", | ||
"type": "leaf", | ||
"state": { | ||
"type": "bookmarks", | ||
"state": {} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"direction": "horizontal", | ||
"width": 300 | ||
}, | ||
"right": { | ||
"id": "327b411306c047a6", | ||
"type": "split", | ||
"children": [ | ||
{ | ||
"id": "1fedc19471b3548f", | ||
"type": "tabs", | ||
"children": [ | ||
{ | ||
"id": "1475965652159445", | ||
"type": "leaf", | ||
"state": { | ||
"type": "backlink", | ||
"state": { | ||
"collapseAll": false, | ||
"extraContext": false, | ||
"sortOrder": "alphabetical", | ||
"showSearch": false, | ||
"searchQuery": "", | ||
"backlinkCollapsed": false, | ||
"unlinkedCollapsed": true | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "0f161700b2b88351", | ||
"type": "leaf", | ||
"state": { | ||
"type": "outgoing-link", | ||
"state": { | ||
"linksCollapsed": false, | ||
"unlinkedCollapsed": true | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "511b353fb075d80a", | ||
"type": "leaf", | ||
"state": { | ||
"type": "tag", | ||
"state": { | ||
"sortOrder": "frequency", | ||
"useHierarchy": true | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "d52f6681693d4c51", | ||
"type": "leaf", | ||
"state": { | ||
"type": "outline", | ||
"state": {} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"direction": "horizontal", | ||
"width": 300, | ||
"collapsed": true | ||
}, | ||
"left-ribbon": { | ||
"hiddenItems": { | ||
"switcher:Open quick switcher": false, | ||
"graph:Open graph view": false, | ||
"canvas:Create new canvas": false, | ||
"daily-notes:Open today's daily note": false, | ||
"templates:Insert template": false, | ||
"command-palette:Open command palette": false | ||
} | ||
}, | ||
"active": "632f257a686245ce", | ||
"lastOpenFiles": [ | ||
"src/theme/DocItem/index.js", | ||
"src/theme/DocItem", | ||
"src/components/DocItem/index.tsx", | ||
"src/components/DocItem", | ||
"src/theme/Admonition/Types.js", | ||
"src/theme/Admonition/Icon/Info.js", | ||
"src/theme/Admonition/Icon", | ||
"src/theme/Admonition/styles.module.css", | ||
"src/theme/Admonition", | ||
"src/theme", | ||
"products/plugins/p2bt/GettingStarted.mdx", | ||
"products/plugins/p2bt/img/p2bt-duplicate.png", | ||
"products/plugins/p2bt/img/p2bt-commands.png", | ||
"products/plugins/p2bt/img/p2bt-material.png", | ||
"products/plugins/p2bt/img/ScreenShot00007.png", | ||
"products/plugins/p2bt/img/ScreenShot00008.png", | ||
"products/plugins/p2bt/img/ScreenShot00006.png", | ||
"products/plugins/p2bt/img/ScreenShot00004.png", | ||
"products/plugins/p2bt/img/ScreenShot00005.png", | ||
"products/plugins/p2bt/img/p2bt-transform.png", | ||
"products/plugins/p2bt/img/mqyo2eduD7.png", | ||
"products/plugins/Details.md", | ||
"products/games/P1/music.md", | ||
"products/games/P1/screenshots.md", | ||
"products/games/P1/videos.md" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
# Getting Started | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
# Examples | ||
|
||
|
||
:::my-custom-admonition title goes here | ||
content goes here | ||
::: | ||
|
||
|
||
# TownExample | ||
|
||
![TownExample](./img/ScreenShot00005.png) | ||
|
||
# Random Pieces | ||
|
||
![PieceExample](./img/ScreenShot00004.png) | ||
|
||
# Abstract Examples | ||
|
||
![AbstractExample](./img/ScreenShot00006.png) | ||
|
||
![Abstractexample2](./img/ScreenShot00008.png) | ||
|
||
# Castle Example | ||
|
||
![CastleExample](./img/ScreenShot00007.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.