Skip to content

BuJo v1.1.0

Compare
Choose a tag to compare
@mihaiconstantin mihaiconstantin released this 29 Nov 06:32
· 164 commits to main since this release
11ac98c

Features

  • Added TextMate scopes for markdown table lines via tokens bujo.horizontal.grid and bujo.vertical.grid. The following colorization

    {
        // Other VS Code settings.
    
        // Copy this one.
        "editor.tokenColorCustomizations": {
            "textMateRules": [
                // Highlights for horizontal table grids.
                { "scope": "bujo.horizontal.grid", "settings": { "foreground": "#be53a1" } },
    
                // Highlights for vertical table grids.
                { "scope": "bujo.vertical.grid", "settings": { "foreground": "#be53a1" } }
            ]
        }
    }

    will result in:

    table_lines

Improvements

  • Add instruction to README.md about colorizing table lines.