Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/markdown-code-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13.2"
python-version: "3.13.5"

- name: Install uv
uses: astral-sh/setup-uv@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13.2'
python-version: '3.13.5'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13.2"
python-version: "3.13.5"

- name: Install uv
uses: astral-sh/setup-uv@v5
Expand Down Expand Up @@ -333,19 +333,24 @@ Which is rendered as:
<!-- OUTPUT:START -->
<!-- ⚠️ This content is auto-generated by `markdown-code-runner`. -->
```bash
usage: markdown-code-runner [-h] [-o OUTPUT] [-d] [-v] input
usage: markdown-code-runner [-h] [-o OUTPUT] [-d] [-v]
[--no-backtick-standardize]
input

Automatically update Markdown files with code block output.

positional arguments:
input Path to the input Markdown file.
input Path to the input Markdown file.

options:
-h, --help show this help message and exit
-o, --output OUTPUT Path to the output Markdown file. (default: overwrite
input file)
-d, --verbose Enable debugging mode (default: False)
-v, --version show program's version number and exit
-h, --help show this help message and exit
-o, --output OUTPUT Path to the output Markdown file. (default: overwrite
input file)
-d, --verbose Enable debugging mode (default: False)
-v, --version show program's version number and exit
--no-backtick-standardize
Disable backtick standardization (default: enabled for
separate output files, disabled for in-place)
```

<!-- OUTPUT:END -->
Expand Down