Crates.io | markdown-table-formatter |
lib.rs | markdown-table-formatter |
version | 0.3.0 |
source | src |
created_at | 2023-10-24 20:55:44.216808 |
updated_at | 2023-11-02 20:54:43.234814 |
description | Markdown table formatter fully compliant with Unicode 15.1.0 |
homepage | |
repository | https://github.com/jameslanska/markdown-table-formatter/ |
max_upload_size | |
id | 1012764 |
size | 38,034 |
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.
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.
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.
If you would like to support further development, please consider buying me a coffee.