mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
61 lines
6.2 KiB
JSON
61 lines
6.2 KiB
JSON
{
|
|
"ext.displayName": "Markdown All in One",
|
|
"ext.description": "All you need to write Markdown (keyboard shortcuts, table of contents, auto preview and more)",
|
|
"command.toc.create.title": "Create Table of Contents",
|
|
"command.toc.update.title": "Update Table of Contents",
|
|
"command.toc.addSecNumbers.title": "Add/Update section numbers",
|
|
"command.toc.removeSecNumbers.title": "Remove section numbers",
|
|
"command.printToHtml.title": "Print current document to HTML",
|
|
"command.printToHtmlBatch.title": "Print documents to HTML (select a source folder)",
|
|
"command.editing.toggleCodeSpan.title": "Toggle code span",
|
|
"command.editing.toggleMath.title": "Toggle math environment",
|
|
"command.editing.toggleMathReverse.title": "Toggle math environment (in reverse order)",
|
|
"command.editing.toggleList.title": "Toggle list",
|
|
"command.editing.toggleCodeBlock.title": "Toggle code block",
|
|
"config.title": "Markdown All in One",
|
|
"config.completion.respectVscodeSearchExclude": "Whether to exclude files from auto-completion using VS Code's `#search.exclude#` setting. (`node_modules`, `bower_components` and `*.code-search` are **always excluded**, not affected by this option.)",
|
|
"config.completion.root": "The root folder for path auto-completion.",
|
|
"config.italic.indicator.description": "Use `*` or `_` to wrap italic text.",
|
|
"config.katex.macros.description": "User-defined KaTeX macros.",
|
|
"config.list.indentationSize.description": "List indentation scheme. (Also affects TOC generation.)\n\nWhether to use different indentation sizes on different list contexts or stick to VS Code's tab size.",
|
|
"config.list.indentationSize.enumDescriptions.adaptive": "Adaptive indentation size according to the context, trying to **left align the sublist with its parent's content**. For example:\n\n```markdown\n- Parent\n - Sublist\n\n1. Parent\n 1. Sublist\n\n10. Parent with longer marker\n 1. Sublist\n```",
|
|
"config.list.indentationSize.enumDescriptions.inherit": "Use the configured tab size of the current document (see the status bar). For example (with `tabSize: 4`):\n\n```markdown\n- Parent\n - Sublist\n\n1. Parent\n 1. Sublist\n\n10. Parent with longer marker\n 1. Sublist\n```",
|
|
"config.math.enabled": "Enable basic math support (Powered by KaTeX).",
|
|
"config.orderedList.autoRenumber.description": "Auto fix ordered list markers.",
|
|
"config.orderedList.marker.description": "Ordered list marker.",
|
|
"config.orderedList.marker.enumDescriptions.one": "Always use `1.` as ordered list marker.",
|
|
"config.orderedList.marker.enumDescriptions.ordered": "Use increasing numbers as ordered list marker.",
|
|
"config.preview.autoShowPreviewToSide.description": "Auto show preview to side.",
|
|
"config.print.absoluteImgPath.description": "Convert image path to absolute path.",
|
|
"config.print.imgToBase64.description": "Convert images to base64 when printing to HTML.",
|
|
"config.print.includeVscodeStylesheets": "Include VS Code's basic Markdown styles so that the exported HTML looks similar as inside VS Code.",
|
|
"config.print.onFileSave.description": "Print current document to HTML when file is saved.",
|
|
"config.print.theme": "Theme of the exported HTML. Only affects code blocks.",
|
|
"config.print.validateUrls.description": "Enable/disable URL validation when printing.",
|
|
"config.syntax.decorations.description": "(**Deprecated**) Use `#markdown.extension.theming.decoration.renderCodeSpan#` instead. See <https://github.com/yzhang-gh/vscode-markdown/issues/888> for details.",
|
|
"config.syntax.decorationFileSizeLimit.description": "If a file is larger than this size (in byte/B), we won't attempt to render syntax decorations.",
|
|
"config.syntax.plainTheme.description": "(**Experimental**) Report issue at <https://github.com/yzhang-gh/vscode-markdown/issues/185>.",
|
|
"config.tableFormatter.enabled.description": "Enable [GitHub Flavored Markdown](https://github.github.com/gfm/) table formatter.",
|
|
"config.tableFormatter.normalizeIndentation.description": "Normalize table indentation to closest multiple of configured editor tab size.",
|
|
"config.tableFormatter.delimiterRowNoPadding.description": "Don't add padding to the delimiter row.",
|
|
"config.theming.decoration.renderCodeSpan.description": "Apply a border around a [code span](https://spec.commonmark.org/0.29/#code-spans).",
|
|
"config.theming.decoration.renderHardLineBreak.description": "(**Experimental**)",
|
|
"config.theming.decoration.renderLink.description": "(**Experimental**)",
|
|
"config.theming.decoration.renderParagraph.description": "(**Experimental**)",
|
|
"config.theming.decoration.renderStrikethrough.description": "Show a line through the middle of a [strikethrough](https://github.github.com/gfm/#strikethrough-extension-).",
|
|
"config.theming.decoration.renderTrailingSpace.description": "Shade the background of trailing space (U+0020) characters on a [line](https://spec.commonmark.org/0.29/#line).",
|
|
"config.toc.levels.description": "Range of levels for table of contents. Use `x..y` for level `x` to `y`.",
|
|
"config.toc.omittedFromToc.description": "Lists of headings to omit by project file.\nExample:\n{ \"README.md\": [\"# Introduction\"] }",
|
|
"config.toc.orderedList.description": "Use ordered list, that is:\n1. ...\n2. ...",
|
|
"config.toc.plaintext.description": "Just plain text TOC, no links.",
|
|
"config.toc.slugifyMode.description": "The method to generate heading ID. This affects **links to headings** in **TOC**, **code completion**, and **printing**.",
|
|
"config.toc.unorderedList.marker.description": "Use `-`, `*`, or `+` in the table of contents (for **unordered** list).",
|
|
"config.toc.updateOnSave.description": "Auto update TOC on save.",
|
|
"ui.exporting.messageCustomCssNotFound": "Custom CSS '{0}' not found.",
|
|
"ui.exporting.messageExportingInProgress": "Printing '{0}' to {1} ...",
|
|
"ui.exporting.messageRevertingToImagePaths": "Reverting to image paths instead of base64 encoding.",
|
|
"ui.general.messageNoValidMarkdownFile": "No valid Markdown file.",
|
|
"ui.general.messageUnableToReadFile": "Unable to read file '{0}'.",
|
|
"ui.welcome.buttonDismiss": "Dismiss",
|
|
"ui.welcome.buttonOpenLocal": "Read"
|
|
} |