markdownfmt icon indicating copy to clipboard operation
markdownfmt copied to clipboard

Like gofmt, but for Markdown.

Results 16 markdownfmt issues
Sort by recently updated
recently updated
newest added

Thanks for the useful tool. In addition to the obvious benefits of consistency, I think it has the potential to help reduce merge and diff friction in Github when many...

thinking

Hello, blackfriday is too buggy and annoying. :) there is a new go-based markdown parser goldmark, now used in huge instead of blackfriday https://github.com/yuin/goldmark we have our own fork of...

Hi, Given that we actively maintain https://github.com/Kunde21/markdownfmt with two other maintainers, and this is slowly a more quiet place, is there a need to mark it somehow in this repo...

It would be really cool if this was able to line-wrap at 80 characters. A lot of repos require max 80 characters in markdown documentation for ease of maintenance. Many...

thinking

I added an option to be able to select between atx and settext header style. I do favour the atx one which is why I made it the default. Just...

Minimal example: Input: > ``` > Foo > ``` ``` foo ``` Output: ``` > ``` > > Foo > > ``` > > > ``` > > foo \`\`\`...

Another case of nested lists behaving strange. I am using spaces, not tabs. Input: ``` - we - will - we - will - rock - you - we -...

Input: ``` 1. foo 1. A paragraph with two lines. Continues 2. Second 3. Third ``` Expected: ``` 1. foo 1. A paragraph with two lines. Continues 2. Second 3....

Hello, is there an interest in a version of this updated for blackfriday v2? I figured that there probably wasn't since it would likely be backwards incompatible for anyone embedding...

enhancement