-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdEditor.code-workspace
53 lines (45 loc) · 1.75 KB
/
mdEditor.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"folders": [
{
"path": "."
}
],
"settings": {
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.quickSuggestions": {
"comments": "off",
"other": "off",
"strings": "off"
},
"editor.renderWhitespace": "all",
"editor.semanticHighlighting.enabled": true,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.wordWrap": "on",
"editor.wrappingStrategy": "simple"
},
// NOTE: Other valid values are pdflatex, lualatex, xelatex, latexmk, tectonic, wkhtmltopdf, weasyprint, prince, context, and pdfroff.
"markdown.updateLinksOnFileMove.enabled": "prompt",
"markdown.validate.enabled": false,
//-------- Pandoc Option Configuration --------
// pandoc .docx output option template --
// No additional configuration necessary unless so desired.
"pandoc.docxOptString": "",
// pandoc .html output option template --
// On Linux, be sure to substitute this version of `htmlOptString` to avoid errors: "pandoc.htmlOptString": "-s -f gfm -t html5 --css=/styles/style.css",
"pandoc.htmlOptString": "-s -f gfm -t html5 --css=\\styles\\style.css",
// pandoc .pdf output option template --
// On Linux, be sure to substitute this version of `pdfOptString` to avoid errors:
//"pandoc.pdfOptString": "-s -f gfm -t pdf",
"pandoc.pdfOptString": "-s -f gfm -t latex",
// NOTE: Other valid values are pdflatex, lualatex, xelatex, latexmk, tectonic, wkhtmltopdf, weasyprint, prince, context, and pdfroff.
}
}