#markdown-tables #table #formatter #markdown #syntax-tree #east-asian-width

markdown-table-formatter

Markdown table formatter fully compliant with Unicode 15.1.0

2 unstable releases

0.3.0 Nov 2, 2023
0.2.0 Oct 24, 2023

#1533 in Text processing

46 downloads per month

MIT license

29KB
410 lines

Markdown Table Formatter

Rust Latest Version NPM version License: MIT Contributor Covenant

A performant table formatter fully compliant with the Unicode 15.1.0 and Github Flavored Markdown (GFM) specifications. The formatter operates on an abstract syntax tree to fully capture the complexity of Unicode and the GFM specification.

use markdown_table_formatter::format_tables;

let unformatted = "# Example

| A | B | C |
| :-- | :--: | ----: |
| C | D | E |";

let correct = "# Example

| A    |   B   |    C |
| :--- | :---: | ---: |
| C    |   D   |    E |";

assert_eq!(format_tables(unformatted), correct);

If you are using the npm package, the use following instead.

import { format_tables } from "@jameslanska/markdown_table_formatter";

format_tables(unformatted)

Markdown Table Formatter correctly handles double width grapheme clusters such as emojis (🦀🤯) and ideographic CJK (Chinese, Japanese, Korean) characters according to Unicode Standard Annex #11 and Unicode Technical Standard #51.

Since tables are discovered in the text by parsing the document into an abstract syntax tree, tables wrapped in HTML blocks or code blocks are ignored. If it doesn't render, it won't be formatted.

The goal of this project is to define a correct base implementation that can be used in other projects. If you discover a correctness error or other bug, please open a GitHub issue.

Alignment Issues

If the table alignment looks slightly off and you are unsure if the formatting is correct, open the file in vim to check. The following snippet may not align perfectly in VS Code or the GitHub Markdown render, but it will align correctly in vim.

| A   | B   |
| --- | --- |
|||

Many text editors such as VS Code do not use true monospacing. For a more in-depth discussion, see the Fonts documentation section from Markdown Table Formatter's sister project, Unicode Display Width.

Acknowledgements

I would like to express my deep and sincere gratitude to Joe Lanska for his unwavering support and for all the time he spent helping me improve the documentation.

Support

If you would like to support further development, please consider buying me a coffee.

Dependencies

~8MB
~162K SLoC