From 8c3183d82097ef51a56fa33a8f4491c20ddc2dd7 Mon Sep 17 00:00:00 2001 From: Wendy Yuchen Sun Date: Sun, 3 May 2026 14:04:35 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dcc1778..0752cd0 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,9 @@ const content = seeMarkReactParse(markdown); | enableLatex | boolean | true | When false, LaTeX expressions are not parsed as math. | | enableAsciimath | boolean | true | When false, AsciiMath expressions are not parsed as math. | | enableNemeth | boolean | true | When false, the Nemeth braille math extension is disabled. | -| latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket', 'dollar'. | -| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent', 'asciimath'. | -| nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@…@`), 'nemeth' (`\n…\n`). | +| latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket' (`\(...\)`), 'dollar' (`$...$`), 'latex' (`\l...\l`). | +| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent' (`` `...` ``), 'asciimath' (`\ax^2 + y^2 = r^2\a`). | +| nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). | | documentFormat | string | 'inline' | The format of the document. Options: 'inline', 'block'. | | imageFiles | object | { [ID]: File } | A map of image IDs to File objects for image rendering. | | shouldBuildImageObjectURL | boolean | false | should build image object URL. | @@ -135,9 +135,9 @@ const toc = createTableOfContents(markdown); | enableLatex | boolean | true | When false, LaTeX expressions are not parsed as math. | | enableAsciimath | boolean | true | When false, AsciiMath expressions are not parsed as math. | | enableNemeth | boolean | true | When false, the Nemeth braille math extension is disabled. | -| latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket', 'dollar'. Must match the renderer. | -| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent', 'asciimath'. Must match the renderer. | -| nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@…@`), 'nemeth' (`\n…\n`). Must match the renderer. | +| latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket' (`\(...\)`), 'dollar' (`$...$`), 'latex' (`\l...\l`). Must match the renderer. | +| asciimathDelimiter | string | 'graveaccent' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). Must match the renderer. | +| nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). Must match the renderer. | ### Return value From cc8f8b4379c1081d39b4a5e7916fc3f596b5b8eb Mon Sep 17 00:00:00 2001 From: wendyyuchensun Date: Sun, 3 May 2026 14:07:02 +0800 Subject: [PATCH 2/2] chore: update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0752cd0..b64973e 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ const content = seeMarkReactParse(markdown); | enableAsciimath | boolean | true | When false, AsciiMath expressions are not parsed as math. | | enableNemeth | boolean | true | When false, the Nemeth braille math extension is disabled. | | latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket' (`\(...\)`), 'dollar' (`$...$`), 'latex' (`\l...\l`). | -| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent' (`` `...` ``), 'asciimath' (`\ax^2 + y^2 = r^2\a`). | +| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent' (`` `...` ``), 'asciimath' (`\a...\a`). | | nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). | | documentFormat | string | 'inline' | The format of the document. Options: 'inline', 'block'. | | imageFiles | object | { [ID]: File } | A map of image IDs to File objects for image rendering. | @@ -136,7 +136,7 @@ const toc = createTableOfContents(markdown); | enableAsciimath | boolean | true | When false, AsciiMath expressions are not parsed as math. | | enableNemeth | boolean | true | When false, the Nemeth braille math extension is disabled. | | latexDelimiter | string | 'bracket' | The delimiter for LaTeX expressions. Options: 'bracket' (`\(...\)`), 'dollar' (`$...$`), 'latex' (`\l...\l`). Must match the renderer. | -| asciimathDelimiter | string | 'graveaccent' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). Must match the renderer. | +| asciimathDelimiter | string | 'graveaccent' | The delimiter for AsciiMath expressions. Options: 'graveaccent' (`` `...` ``), 'asciimath' (`\a...\a`). Must match the renderer. | | nemethDelimiter | string | 'at' | The delimiter for Nemeth braille expressions. Options: 'at' (`@...@`), 'nemeth' (`\n...\n`). Must match the renderer. | ### Return value