Skip to content

Releases: simonguo/vscode-markdown-table-sort

v2.0.0

02 Feb 10:57
Compare
Choose a tag to compare

support custom configuration

Configuration

Edit your user or workspace settings to configure the extension.

// settings.json
{
  "markdownTableSortPrettier.enable": true,
  "markdownTableSortPrettier.sortOrder": "asc",
  "markdownTableSortPrettier.sortColumn": 0,
  "markdownTableSortPrettier.ignoreCharacters": ["~", " "]
}
  • markdownTableSortPrettier.enable - Enable/disable markdown table sort. (default: true)
  • markdownTableSortPrettier.sortOrder - Sort order, asc or desc. (default: asc)
  • markdownTableSortPrettier.sortColumn - Sort column, 0 or 1 or 2... (default: 0)
  • markdownTableSortPrettier.ignoreCharacters - Ignore characters. (default: ['~',' '])

Full Changelog: https://github.com/simonguo/vscode-markdown-table-sort/commits/v2.0.0