This commit is contained in:
Jesse James Isler 2022-06-27 16:45:41 +02:00
parent 8d8b6bf300
commit 89da76ab25
7 changed files with 11366 additions and 3 deletions

8
.obsidian/app.json vendored
View File

@ -12,5 +12,11 @@
"de",
"de-DE"
],
"showUnsupportedFiles": true
"showUnsupportedFiles": true,
"pdfExportSettings": {
"pageSize": "A4",
"landscape": false,
"margin": "0",
"downscalePercent": 100
}
}

View File

@ -2,6 +2,6 @@
"translucency": false,
"cssTheme": "Obsidian Nord",
"theme": "obsidian",
"baseFontSize": 14,
"baseFontSize": 12,
"enabledCssSnippets": []
}

View File

@ -7,5 +7,6 @@
"obsidian-timestamper",
"templater-obsidian",
"obsidian-style-settings",
"obsidian-dialogue-plugin"
"obsidian-dialogue-plugin",
"obsidian-pandoc"
]

View File

@ -0,0 +1,15 @@
{
"showCLICommands": false,
"addExtensionsToInternalLinks": "html",
"injectAppCSS": "current",
"injectThemeCSS": false,
"customCSSFile": null,
"displayYAMLFrontmatter": false,
"linkStrippingBehaviour": "text",
"highDPIDiagrams": true,
"pandoc": null,
"pdflatex": null,
"outputFolder": null,
"extraArguments": "",
"exportFrom": "html"
}

11327
.obsidian/plugins/obsidian-pandoc/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "obsidian-pandoc",
"name": "Pandoc Plugin",
"version": "0.2.5",
"minAppVersion": "0.12.5",
"description": "This is a Pandoc export plugin for Obsidian. It provides commands to export to formats like DOCX, ePub and PDF.",
"author": "Oliver Balfour",
"authorUrl": "https://github.com/OliverBalfour/obsidian-pandoc",
"isDesktopOnly": true
}

View File

@ -0,0 +1,4 @@
.pandoc-plugin-error {
color: red;
}