|
21 | 21 | "markdown.previewSide.title": "Open Preview to the Side", |
22 | 22 | "markdown.showLockedPreviewToSide.title": "Open Locked Preview to the Side", |
23 | 23 | "markdown.showSource.title": "Show Source", |
| 24 | + "markdown.styles.dec": "A list of URLs or local paths to CSS style sheets to use from the Markdown preview. Relative paths are interpreted relative to the folder open in the Explorer. If there is no open folder, they are interpreted relative to the location of the Markdown file. All `\\` need to be written as `\\\\`.", |
24 | 25 | "markdown.reopenAsPreview.title": "Switch to Preview View", |
25 | 26 | "markdown.reopenAsSource.title": "Switch to Editor View", |
26 | 27 | "markdown.togglePreview.title": "Toggle Preview View", |
27 | | - "markdown.styles.dec": "A list of URLs or local paths to CSS style sheets to use from the Markdown preview. Relative paths are interpreted relative to the folder open in the Explorer. If there is no open folder, they are interpreted relative to the location of the Markdown file. All '\\' need to be written as '\\\\'.", |
28 | 28 | "markdown.showPreviewSecuritySelector.title": "Change Preview Security Settings", |
29 | 29 | "markdown.trace.extension.desc": "Enable debug logging for the Markdown extension.", |
30 | 30 | "markdown.trace.server.desc": "Traces the communication between VS Code and the Markdown language server.", |
|
40 | 40 | "configuration.markdown.links.openLocation.description": "Controls where links in Markdown files should be opened.", |
41 | 41 | "configuration.markdown.links.openLocation.currentGroup": "Open links in the active editor group.", |
42 | 42 | "configuration.markdown.links.openLocation.beside": "Open links beside the active editor.", |
43 | | - "configuration.markdown.suggest.paths.enabled.description": "Enable path suggestions while writing links in Markdown files.", |
| 43 | + "configuration.markdown.suggest.paths.enabled.description": "Controls whether path suggestions are shown while writing links in Markdown files.", |
44 | 44 | "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions": "Enable suggestions for headers in other Markdown files in the current workspace. Accepting one of these suggestions inserts the full path to header in that file, for example: `[link text](/path/to/file.md#header)`.", |
45 | 45 | "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never": "Disable workspace header suggestions.", |
46 | 46 | "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash": "Enable workspace header suggestions after typing `##` in a path, for example: `[link text](##`.", |
47 | 47 | "configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash": "Enable workspace header suggestions after typing either `##` or `#` in a path, for example: `[link text](#` or `[link text](##`.", |
48 | | - "configuration.markdown.editor.drop.enabled": "Enable dropping files into a Markdown editor while holding Shift. Requires enabling `#editor.dropIntoEditor.enabled#`.", |
| 48 | + "configuration.markdown.editor.drop.enabled": "Controls whether dropping files into a Markdown editor while holding Shift inserts Markdown links. Requires enabling `#editor.dropIntoEditor.enabled#`.", |
49 | 49 | "configuration.markdown.editor.drop.enabled.always": "Always insert Markdown links.", |
50 | 50 | "configuration.markdown.editor.drop.enabled.smart": "Smartly create Markdown links by default when not dropping into a code block or other special element. Use the drop widget to switch between pasting as plain text or as Markdown links.", |
51 | 51 | "configuration.markdown.editor.drop.enabled.never": "Never create Markdown links.", |
52 | 52 | "configuration.markdown.editor.drop.copyIntoWorkspace": "Controls if files outside of the workspace that are dropped into a Markdown editor should be copied into the workspace.\n\nUse `#markdown.copyFiles.destination#` to configure where copied dropped files should be created", |
53 | | - "configuration.markdown.editor.filePaste.enabled": "Enable pasting files into a Markdown editor to create Markdown links. Requires enabling `#editor.pasteAs.enabled#`.", |
| 53 | + "configuration.markdown.editor.filePaste.enabled": "Controls whether pasting files into a Markdown editor creates Markdown links. Requires enabling `#editor.pasteAs.enabled#`.", |
54 | 54 | "configuration.markdown.editor.filePaste.enabled.always": "Always insert Markdown links.", |
55 | 55 | "configuration.markdown.editor.filePaste.enabled.smart": "Smartly create Markdown links by default when not pasting into a code block or other special element. Use the paste widget to switch between pasting as plain text or as Markdown links.", |
56 | 56 | "configuration.markdown.editor.filePaste.enabled.never": "Never create Markdown links.", |
|
62 | 62 | "configuration.pasteUrlAsFormattedLink.smart": "Smartly create Markdown links by default when not pasting into a code block or other special element. Use the paste widget to switch between pasting as plain text or as Markdown links.", |
63 | 63 | "configuration.pasteUrlAsFormattedLink.smartWithSelection": "Smartly create Markdown links by default when you have selected text and are not pasting into a code block or other special element. Use the paste widget to switch between pasting as plain text or as Markdown links.", |
64 | 64 | "configuration.pasteUrlAsFormattedLink.never": "Never create Markdown links.", |
65 | | - "configuration.markdown.validate.enabled.description": "Enable all error reporting in Markdown files.", |
66 | | - "configuration.markdown.validate.referenceLinks.enabled.description": "Validate reference links in Markdown files, for example: `[link][ref]`. Requires enabling `#markdown.validate.enabled#`.", |
67 | | - "configuration.markdown.validate.fragmentLinks.enabled.description": "Validate fragment links to headers in the current Markdown file, for example: `[link](#header)`. Requires enabling `#markdown.validate.enabled#`.", |
68 | | - "configuration.markdown.validate.fileLinks.enabled.description": "Validate links to other files in Markdown files, for example `[link](/path/to/file.md)`. This checks that the target files exists. Requires enabling `#markdown.validate.enabled#`.", |
| 65 | + "configuration.markdown.validate.enabled.description": "Controls whether error reporting is enabled in Markdown files.", |
| 66 | + "configuration.markdown.validate.referenceLinks.enabled.description": "Controls whether reference links in Markdown files are validated, for example: `[link][ref]`. Requires enabling `#markdown.validate.enabled#`.", |
| 67 | + "configuration.markdown.validate.fragmentLinks.enabled.description": "Controls whether fragment links to headers in the current Markdown file are validated, for example: `[link](#header)`. Requires enabling `#markdown.validate.enabled#`.", |
| 68 | + "configuration.markdown.validate.fileLinks.enabled.description": "Controls whether links to other files in Markdown files are validated, for example `[link](/path/to/file.md)`. This checks that the target files exist. Requires enabling `#markdown.validate.enabled#`.", |
69 | 69 | "configuration.markdown.validate.fileLinks.markdownFragmentLinks.description": "Validate the fragment part of links to headers in other files in Markdown files, for example: `[link](/path/to/file.md#header)`. Inherits the setting value from `#markdown.validate.fragmentLinks.enabled#` by default.", |
70 | 70 | "configuration.markdown.validate.ignoredLinks.description": "Configure links that should not be validated. For example adding `/about` would not validate the link `[about](/about)`, while the glob `/assets/**/*.svg` would let you skip validation for any link to `.svg` files under the `assets` directory.", |
71 | 71 | "configuration.markdown.validate.unusedLinkDefinitions.description": "Validate link definitions that are unused in the current file.", |
|
77 | 77 | "configuration.markdown.updateLinksOnFileMove.include": "Glob patterns that specifies files that trigger automatic link updates. See `#markdown.updateLinksOnFileMove.enabled#` for details about this feature.", |
78 | 78 | "configuration.markdown.updateLinksOnFileMove.include.property": "The glob pattern to match file paths against. Set to true to enable the pattern.", |
79 | 79 | "configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Enable updating links when a directory is moved or renamed in the workspace.", |
80 | | - "configuration.markdown.occurrencesHighlight.enabled": "Enable highlighting link occurrences in the current document.", |
| 80 | + "configuration.markdown.occurrencesHighlight.enabled": "Controls whether link occurrences in the current document are highlighted.", |
81 | 81 | "configuration.markdown.copyFiles.destination": { |
82 | 82 | "message": "Configures the path and file name of files created by copy/paste or drag and drop. This is a map of globs that match against a Markdown document path to the destination path where the new file should be created.\n\nThe destination path may use the following variables:\n\n- `${documentDirName}` — Absolute parent directory path of the Markdown document, e.g. `/Users/me/myProject/docs`.\n- `${documentRelativeDirName}` — Relative parent directory path of the Markdown document, e.g. `docs`. This is the same as `${documentDirName}` if the file is not part of a workspace.\n- `${documentFileName}` — The full filename of the Markdown document, e.g. `README.md`.\n- `${documentBaseName}` — The basename of the Markdown document, e.g. `README`.\n- `${documentExtName}` — The extension of the Markdown document, e.g. `md`.\n- `${documentFilePath}` — Absolute path of the Markdown document, e.g. `/Users/me/myProject/docs/README.md`.\n- `${documentRelativeFilePath}` — Relative path of the Markdown document, e.g. `docs/README.md`. This is the same as `${documentFilePath}` if the file is not part of a workspace.\n- `${documentWorkspaceFolder}` — The workspace folder for the Markdown document, e.g. `/Users/me/myProject`. This is the same as `${documentDirName}` if the file is not part of a workspace.\n- `${fileName}` — The file name of the dropped file, e.g. `image.png`.\n- `${fileExtName}` — The extension of the dropped file, e.g. `png`.\n- `${unixTime}` — The current Unix timestamp in milliseconds.\n- `${isoTime}` — The current time in ISO 8601 format, e.g. '2025-06-06T08:40:32.123Z'.", |
83 | 83 | "comment": [ |
|
0 commit comments