Skip to content

Commit a0c05c6

Browse files
committed
docs: update skills references for v3.2.0 defaults and features
1 parent c613aed commit a0c05c6

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

skills/html-to-markdown/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >-
99
license: MIT
1010
metadata:
1111
author: kreuzberg-dev
12-
version: "1.0"
12+
version: "3.2.0"
1313
repository: https://github.com/kreuzberg-dev/html-to-markdown
1414
---
1515

@@ -77,7 +77,7 @@ composer require kreuzberg-dev/html-to-markdown
7777
<dependency>
7878
<groupId>dev.kreuzberg</groupId>
7979
<artifactId>html-to-markdown</artifactId>
80-
<version>3.0.0</version>
80+
<version>3.2.0</version>
8181
</dependency>
8282
```
8383

skills/html-to-markdown/references/cli-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ html-to-markdown [OPTIONS] [FILE]
3838
|------|-------|--------|---------|-------------|
3939
| `--list-indent-type <TYPE>` | | `spaces`, `tabs` | `spaces` | Indentation type for nested lists. |
4040
| `--list-indent-width <N>` | | 1–8 | `2` | Spaces per indent level. Ignored with `tabs`. |
41-
| `--bullets <CHARS>` | `-b` | string | `"-"` | Bullet characters cycling through nesting levels. E.g. `"*+-"`. |
41+
| `--bullets <CHARS>` | `-b` | string | `"-*+"` | Bullet characters cycling through nesting levels. E.g. `"*+-"`. |
4242

4343
## Text Formatting
4444

@@ -57,7 +57,7 @@ html-to-markdown [OPTIONS] [FILE]
5757

5858
| Flag | Short | Values | Default | Description |
5959
|------|-------|--------|---------|-------------|
60-
| `--code-block-style <STYLE>` | | `indented`, `backticks`, `tildes` | `indented` | Code block fence style. |
60+
| `--code-block-style <STYLE>` | | `backticks`, `indented`, `tildes` | `backticks` | Code block fence style. |
6161
| `--code-language <LANG>` | `-l` | string | `""` | Default language for fenced code blocks. |
6262

6363
## Links

skills/html-to-markdown/references/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In TypeScript/Node.js, use `JsConversionOptions` interface (camelCase).
1313
| `heading_style` | `heading_style` | `headingStyle` | enum | `atx` | Heading format: `atx` (`# h1`), `underlined` (`===`), `atxClosed` (`# h1 #`) |
1414
| `list_indent_type` | `list_indent_type` | `listIndentType` | enum | `spaces` | List indentation: `spaces` or `tabs` |
1515
| `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. |
1717
| `strong_em_symbol` | `strong_em_symbol` | `strongEmSymbol` | char | `'*'` | Symbol for bold/italic emphasis: `'*'` or `'_'` |
1818
| `escape_asterisks` | `escape_asterisks` | `escapeAsterisks` | bool | `false` | Escape `*` in plain text to prevent unintended formatting |
1919
| `escape_underscores` | `escape_underscores` | `escapeUnderscores` | bool | `false` | Escape `_` in plain text |
@@ -33,7 +33,7 @@ In TypeScript/Node.js, use `JsConversionOptions` interface (camelCase).
3333
| `sub_symbol` | `sub_symbol` | `subSymbol` | string | `""` | Symbol wrapping `<sub>` text. E.g. `"~"``~text~`. Empty = no wrapping. |
3434
| `sup_symbol` | `sup_symbol` | `supSymbol` | string | `""` | Symbol wrapping `<sup>` text. E.g. `"^"``^text^`. Empty = no wrapping. |
3535
| `newline_style` | `newline_style` | `newlineStyle` | enum | `spaces` | `<br>` representation: `spaces` (two trailing spaces + newline) or `backslash` (`\` + newline) |
36-
| `code_block_style` | `code_block_style` | `codeBlockStyle` | enum | `indented` (Python default: `backticks`) | Code block style: `indented` (4 spaces), `backticks` (```), `tildes` (~~~). Python default is `backticks`. |
36+
| `code_block_style` | `code_block_style` | `codeBlockStyle` | enum | `backticks` | Code block style: `backticks` (```), `indented` (4 spaces), `tildes` (~~~). |
3737
| `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) |
3838
| `preprocessing` | (separate param) | `preprocessing` | object | see below | HTML preprocessing config. In Python, pass as separate `PreprocessingOptions` argument. |
3939
| `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
5454

5555
| Rust Field | Python | TypeScript | Type | Default | Description |
5656
|------------|--------|------------|------|---------|-------------|
57-
| `enabled` | `enabled` | `enabled` | bool | `false` (Rust) / `true` (Python) | Enable HTML preprocessing globally |
57+
| `enabled` | `enabled` | `enabled` | bool | `true` | Enable HTML preprocessing globally |
5858
| `preset` | `preset` | `preset` | enum | `standard` | Aggressiveness: `minimal`, `standard`, `aggressive` |
5959
| `remove_navigation` | `remove_navigation` | `removeNavigation` | bool | `true` | Remove `<nav>`, breadcrumbs, menus, sidebars |
6060
| `remove_forms` | `remove_forms` | `removeForms` | bool | `true` | Remove `<form>`, `<input>`, `<button>`, etc. |

0 commit comments

Comments
 (0)