mirror of
https://github.com/vesan/obsidian-table-beautifier.git
synced 2026-07-22 06:53:19 +00:00
Parses ASCII (+/-/|) and Unicode (┌─┬─┐│├┼┤└┴┘) table formats from CLI tool output and converts them to properly formatted Markdown pipe tables. Identifier-like cell values are auto-wrapped in backticks. Available via right-click context menu and command palette.
17 lines
389 B
JSON
17 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": false,
|
|
"isolatedModules": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|