Hi Rainer,

Did you check https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt 
?

Install with:

    % brew install node
    % npm install -g markdown-table-prettify
    
Create a BBEdit Text Filter ~/Library/Application Support/BBEdit/Text 
Filters/markdown_table_prettify.sh:

    #!/usr/bin/env node
    const { CliPrettify } = require('markdown-table-prettify');
    process.stdin.setEncoding('utf8');
    
    process.stdin.on('data', function(text) {
      console.log(CliPrettify.prettify(text));
    })

HTH,

Jean Jourdain

On Wednesday, April 13, 2022 at 1:48:44 PM UTC+2 Rainer Krug wrote:

> Hi
> How can I align the | in a markdown table in bbedit? 
> Any scripts / filters which help me working with tables in bbedit? 
> All the ones I found are REALLY old.
>
> Thanks,
>
> Rainer
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "[email protected]" rather than 
posting here. Follow @bbedit on Twitter: <https://twitter.com/bbedit>
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/eabb6781-ee12-47b6-83cc-3c408f339246n%40googlegroups.com.

Reply via email to