Skip to content

An extension for VSCode that highlights the ==marked== text in your code editor.

License

Notifications You must be signed in to change notification settings

dacodekid/vscode-mark-highlighter

Repository files navigation

VSCode Mark Highlighter

An extension for VSCode that highlights the ==marked== text in your code editor.

Screenshot

Screenshot

Extension Settings

Keybinding

Default keybinding is ctrl+alt+cmd+=. You can change it by adding this to your keybindings.json file:

{
  "command": "mark.highlighter.wrapUnwrap",
  "key": "YOUR OWN KEYBINDING",
  "when": "editorTextFocus && !editorReadonly && editorLangId =~ /^markdown$|^rmd$|^quarto$/"
}

Theme Color

Add this to your settings.json file:

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": "markup.raw.marked.vscode.mark.highlighter",
        "settings": {
          "foreground": "#ff5500",
          "fontStyle": "italic"
        }
      }
    ]
  }

About

An extension for VSCode that highlights the ==marked== text in your code editor.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published