mugiwara85 / CodeblockCustomizer

Codeblock Customizer plugin for Obsidian
MIT License
147 stars 7 forks source link

Codeblock Customizer Plugin

release

[!important] Version 1.2.7 changes

New:

  • Custom SVGs
  • Option to uncollapse all codeblock on printing
  • Bracket highlight (click next to a bracket to highlight it and its opening/closing pair)
  • Selection matching (select text to highlight the where the text is found in the document)
  • Inverse fold behavior
  • Option to unwrap code in reading view
  • Text highlight with from and to markers

Modified:

  • Semi-fold does not count start and end lines (line with opening and closing backticks) in editing mode anymore
  • Hide inactive options on settings page
  • Performance improvements
  • CSS copy and delete code positioning fix
  • Moved border colors to language specific colors
  • Language specific colors can now be set for code blocks without a language as well (specify nolang as a language)
  • Fixed a few smaller bugs

This is a plugin for Obsidian (https://obsidian.md).

The plugin lets you customize the code blocks in the following way:

Parameters

Parameters can be defined in the opening line of a code block (after the three opening backticks).
All parameters can be defined using : or =.
Available parameters:

Name Value Description
fold Defines that the code block is in folded state when the document is opened.
unfold Defined that the code block is in unfolded state when the document is opened and the Inverse fold behavior option is enabled, otherwise ignored.
exclude Exclude the code block from the plugin.
hl Multiple Everything that applies to the hl parameter also applies to alternative highlight colors!
Multiple values can be combined with a , (e.g: hl:test,3,5-6,9\|abc,test1,test2,10-15\|test3)
Highlights specified lines or words based on different formats:
hl:5 Highlights line 5.
hl:5-7 Highlights lines from 5 to 7.
hl:test Highlights all lines containing the word "test", or the word itself, if the option Highlight words instead of lines is enabled. (hl:test,abc)
hl:5|test Highlights line 5 if it contains the word "test", or the word itself in line 5 if, the option Highlight words instead of lines is enabled.
hl:5-7|test Highlights lines 5 to 7 if they contain the word "test", or the word itself in lines 5 to 7 if the option Highlight words instead of lines is enabled.
hl:abc:xyz Highlights lines containing text starting with "abc" and ending with "xyz", or the text itself if the option Highlight words instead of lines is enabled.
hl:5|abc:xyz Highlights line 5 if it contains text starting with "abc" and ending with "xyz", or the text itself in line 5 if the option Highlight words instead of lines is enabled.
hl:5-7|abc:xyz Highlights lines 5 to 7 if they contain text starting with "abc" and ending with "xyz", or the text itself in lines 5 to 7 if the option Highlight words instead of lines is enabled.
file {string} Sets the display text for the header. (e.g: file:hello or file:"Hello World!")
title {string} Alias for file
ln Multiple
true Displays line numbers for that specific code block, even if Enable line numbers is disabled
false Does not display line numbers for that specific code block, even if Enable line numbers is enabled
{number} Sets the offset for line number to start (e.g: ln:5 -> line numbering starts from 5)

Themes

The plugin comes with a default Obsidian and a Solarized theme. The default theme is Obsidian.

Default Solarized theme (dark mode):

Pasted_image_20230125231644.png

Default Solarized theme (light mode):

Pasted_image_20230125231735.png

How the themes work:

Highlighting

Main highlight

To highlight lines specify hl: followed by line numbers in the first line of the code block.

Example:
```cpp hl:1,3,4-6

Pasted_image_20230125230046.png

Alternative highlight

You can define multiple highlight colors. This means, that you have to define a name for the highlight color. This name will be used as a parameter, and you can use it just like with the hl parameter.

Example: You define three types of highlight colors (info, warn, error). After that set the colors. After that you can use it in the first line of code blocks: ```cpp info:2 warn:4-6 error:8

Pasted_image_20230811133823.png

Example code block with multiple highlight colors:

[Pasted_image_20230314211417.png]

Text highlight

It is possible now to highlight text instead of lines. To use this option you have to enable the Highlight words instead of lines option in the settingstab on the "Codeblock" settings page. You can still use the normal highlight as before, but the option got extended:

[!note]

  • You can use the text highlighting with alternative highlight colors as well!
  • If the setting Highlight words instead of lines is disabled, then lines will be highlighted not words. Please note, that if you used multiple colors in one line, and the option Highlight words instead of lines is disabled, it may result in an unexpected line highlight, since obviously only one color can be used to highlight a line.

An example code block with text highlight, using three different colors is shown below:

[Pasted_image_20240227234145.png]

An example code block with text highlight, using from and to markers:

[Pasted_image_20240613130412.png]

Language specific coloring

In the settings, on the Language specific colors settings page it is now possible to define colors for languages. These colors will only apply to code blocks with the defined language. If you defined colors for "Python", then those colors will only apply to every Python code block. If you want to specify colors for code blocks which do not have a language defined, specify nolang as a language. First, you have to add a language. Then you can select which color you want to set. Available options are:

An example is shown below, where the background color has been defined for "Python", "JavaScript" and "C++" languages.

[Pasted_image_20240228002357.png]

Example code blocks with border colors set:

Pasted_image_20230811134737.png

Don't forget to set Codeblock border styling position, otherwise border colors will not be displayed!

Display filename/title

To display a filename specify file: or title: followed by a filename in the first line of the code block. If the filename contains space, specify it between "" e.g.: file:"long filename.cpp". title is basically an alias for file. If both are defined, then file will be used

Example:
```cpp file:test.cpp
```cpp title:test.py
```cpp file:"long filename.cpp"

Pasted_image_20230125230351.png

Folding

If the header is displayed, simply clicking on it, will fold the code block below it.

Default fold

To specify an initial fold state when the document is opened, specify fold in the first line of the code block. If fold is defined in a code block, then when you open the document, the code block will be automatically collapsed, and only the header will be displayed. You can unfold the code block by clicking on the header.

Example:
```cpp fold

Pasted_image_20230125230928.png

Semi-fold

You can enable semi-folding in settings tab: Pasted_image_20230831132418.png

After enabling it, you have to select the count of the visible lines (default is 5). Optionally you can also enable an additional uncollapse button, which will be displayed in the last line. Semi-fold works just like the normal fold with the following differences:

The number of the "fade" lines is constant, and cannot be changed. Example: You set the count of visible lines to 5, and you have a code block with 10 lines. In this case semi-fold will be used. The first 5 lines remain visible, and the next 4 lines will "fade away".

[!note] In editing mode the opening and closing lines (with the three backticks) do not count!

Example semi-folded code block (light theme):
Pasted_image_20230831134504.png

Example semi-folded code block (dark theme):
Pasted_image_20230831134431.png

Example semi-folded code block with additional uncollapse button:
Pasted_image_20230831134601.png

Inverse fold behavior

When this options is enabled in the settings page, code blocks are collapsed by default when a document is opened, even if fold was NOT defined. If you enabled this option, and want some code blocks unfolded by default, you can use the unfold parameter.

Icon

There are currently around 170 icons available for different languages. You can enable the option in the settings page to display icons in the header. If you enable this option, and if the language specified in the code block has an icon, and the header is displayed, then the icon will be displayed. You can also force to always display the icon (which also means that the header will be also displayed) even if the header is not displayed, because the file parameter is not defined.

Header

The header is displayed in the following cases:

If the header is displayed, folding works as well. If Always display codeblock language is enabled then the header will display the code block language as well.

Example:

Pasted_image_20230125233958.png

Pasted_image_20230125231233.png

Pasted_image_20230125231356.png

[Pasted_image_20230314212111.png]

Line numbers

To enable line numbers go to the plugin settings and enable the Enable line numbers option. After that the line numbers will be displayed before code blocks.

Example:

[Pasted_image_20230314211657.png]

Example for reading mode:

Pasted_image_20230125232448.png

ln parameter

The ln: parameter can have 3 values: true, false, number

Pasted_image_20230811140306.png

Commands

There are three commands available in the command palette. You can:

If you collapsed/uncollapsed all code blocks there is no need to restore them to their original state. When you switch documents they are automatically restored to their original state.

Commands.png

Inline code

If you want to style inline code, you have to enable it first. After that you can set the background color and the text color for inline code.

Pasted_image_20230811134925.png

Print to PDF

By default, if you print a document the styling is not applied to it. You can enable it in the settings. By default, the light colors are used for printing, but if you want to force the dark colors, you can enable the second toggle.

Pasted_image_20230811135026.png

Indented code blocks

Code blocks in lists, are now indented properly as shown below. Simply, mark the text in the code block, and press TAB. This will shift the code block right, by adding margin to the left side. Pressing TAB multiple times, indents the code block more. If you want to undo it, just select the text again, and press SHIFT+TAB.

Pasted_image_20230925220351.png

Links

If you want to convert markdown, wiki and normal http/https link syntax to actual links inside code blocks, then you have to mark them as comment according to the current code block language, and enable the setting Enable links usage in the settings on the "Codeblock" settings page. Links can also be used in the header. For example if you are in a python code block, then you have write a "#" before the link (comment it out), and it will be automatically converted to a link. From version 1.2.6 only commented out links will be converted! By default the links, which point to another document in your vault, are not updated, if you rename the file. This is because Obsidian does not provide (yet) a way to add these links to the metadata cache. A temporary solution for that is to enable the option Enable automatically updating links on file rename option in settings.

[!important] Please note, that this method iterates over all of your documents in you vault! If you have a huge vault, it could take some time. During my testing, it was however, very efficient, but please test it yourself!

Sample code block with links, but with the option Enable links usage disabled:

[Pasted_image_20240228005151.png]

Same code block with the Enable links usage option enabled:

[Pasted_image_20240228005240.png]

Custom SVGs

It is possible to use custom SVGs, and apply custom syntax highlighting for code blocks. To use this feature create the following folder <VaultFolder>\.obsidian\plugins\codeblock-customizer\customSVG. In this folder create a file called svg.json with similar content:

{
  "languages": [
    {
      "codeblockLanguages": ["language1", "language2"],
      "displayName": "iRule",
      "svgFile": "f5.svg",
      "format": "tcl"
    }
  ]
}

Explanation:

[!important] Obsidian uses two different methods for syntax highlighting. For editing mode it uses CodeMirror 6, and for reading mode it uses Prism.js. Because of this there is a slight difference between how this works.

  • If you want to apply syntax highlighting in editing mode, then the codeblockLanguage must NOT have syntax highlighting, because it is not possible (or I didn't found a way) to overwrite any existing syntax highlighting. For example language1 does not have syntax highlighting, therefore the tcl syntax highlighting will be applied successfully. The languages specified in codeblockLanguages are case sensitive in editing mode
  • In reading mode however it is possible to overwrite existing syntax highlighting. So you can apply C++ syntax highlighting for a python code block. The languages specified in codeblockLanguages are NOT case sensitive in reading mode.

An example using the above shown JSON file, where tcl syntax highlighting is applied to language1 code blocks, using the custom SVG file, and the custom display name:

[Pasted_image_20240613160326.png]

Bracket highlight

You can enable bracket highlighting for matching and also for non-matching brackets. If you click next to a bracket ((,),{,},[,]), then the bracket itself, and the corresponding opening/closing bracket will be highlighted. You can set individual background, and highlight colors for matching and non-matching brackets:

[Pasted_image_20240613130848.png]

Below is a simple example. Notice that that the matching and non-matching bracket are highlighted with different colors:

[BracketHighlight.gif]

Selection matching

If you enable selection matching, you can set the background color for the matches to be highlighted with. Simply select a string, or double click on a word, and the same text will be highlighted if found:

[SelectionMatching.gif]

[!note] Selection matching (currently) has a limit of 750 matches. If there are more matches than this, then selection matching will not highlight anything. Should you encounter a case where this number is not enough, contact me, and I'll increase it.

How to install the plugin

Support

If you like this plugin, and would like to help support continued development, use the button below!