You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`list_indent_type`|`list_indent_type`|`listIndentType`| enum |`spaces`| List indentation: `spaces` or `tabs`|
15
15
|`list_indent_width`|`list_indent_width`|`listIndentWidth`| int |`2`| Spaces per list indent level (ignored when `list_indent_type = tabs`) |
16
-
|`bullets`|`bullets`|`bullets`| string |`"-"` (Python default: `"-*+"`)| Bullet characters cycling through nesting levels. Default `"-"` in Rust/Node; Python default is `"-*+"`. Use `"*+-"` for varying per level. |
16
+
|`bullets`|`bullets`|`bullets`| string |`"-*+"`| Bullet characters cycling through nesting levels. Characters cycle across nesting levels. Use `"*+-"` for a different order. |
17
17
|`strong_em_symbol`|`strong_em_symbol`|`strongEmSymbol`| char |`'*'`| Symbol for bold/italic emphasis: `'*'` or `'_'`|
18
18
|`escape_asterisks`|`escape_asterisks`|`escapeAsterisks`| bool |`false`| Escape `*` in plain text to prevent unintended formatting |
19
19
|`escape_underscores`|`escape_underscores`|`escapeUnderscores`| bool |`false`| Escape `_` in plain text |
@@ -33,7 +33,7 @@ In TypeScript/Node.js, use `JsConversionOptions` interface (camelCase).
33
33
|`sub_symbol`|`sub_symbol`|`subSymbol`| string |`""`| Symbol wrapping `<sub>` text. E.g. `"~"` → `~text~`. Empty = no wrapping. |
34
34
|`sup_symbol`|`sup_symbol`|`supSymbol`| string |`""`| Symbol wrapping `<sup>` text. E.g. `"^"` → `^text^`. Empty = no wrapping. |
|`keep_inline_images_in`|`keep_inline_images_in`|`keepInlineImagesIn`| list/array |`[]`| HTML tag names where `<img>` children remain as Markdown (not converted to alt text) |
38
38
|`preprocessing`| (separate param) |`preprocessing`| object | see below | HTML preprocessing config. In Python, pass as separate `PreprocessingOptions` argument. |
39
39
|`encoding`|`encoding`|`encoding`| string |`"utf-8"`| Expected character encoding for input HTML |
@@ -54,7 +54,7 @@ Preprocessing runs before conversion to clean noisy HTML (ads, navigation, forms
54
54
55
55
| Rust Field | Python | TypeScript | Type | Default | Description |
0 commit comments