igrr / code_snippet_to_doc
Pre-commit hook to keep code snippets in your documentation up to date
README
code_snippet_to_doc
code_snippet_to_doc keeps code snippets in documentation files in sync with source code. It replaces the content between special comments with the corresponding lines from source files, ensuring that code examples in documentation never go stale. It can be invoked as a pre-commit hook or as a standalone script. Documentation in Markdown and RestructuredText formats is supported.
How it works
Markdown
Add HTML comments to your Markdown file indicating which source file and line range to include:
Using line numbers:
Using search patterns (glob-style):
Using regular expressions (prefix with r):
Regex patterns support the full Python re syntax, including anchors like ^ (start of line) and $ (end of line).
Including or excluding the end line โ by default, the end line is excluded from the snippet. Add a + suffix to include it:
The + suffix works with all end line specification types: line numbers, glob patterns, and regular expressions. It is convenient for extracting complete blocks like C function bodies, where the closing } should be included.
Colons inside search patterns must be escaped with \:.
File paths are resolved relative to the document file.
RestructuredText
Add RST comments to your .rst file using the same colon-separated syntax:
Using line numbers:
.. code_snippet_start:path/to/file.c:10:20
.. code_snippet_end
Using search patterns and regular expressions:
.. code_snippet_start:path/to/file.c:r/^int main/:r/^\}/+
.. code_snippet_end
The generated output uses RST's code-block directive with proper indentation:
.. code_snippet_start:path/to/file.c:r/^int main/:r/^\}/+
.. code-block:: c
int main(int argc, char *argv[]) {
printf("Hello, World!\n");
return 0;
}
.. code_snippet_end
All line specification types (line numbers, glob patterns, regex, + suffix) work the same way in both Markdown and RST files. The format is auto-detected from the file extension.
Then run code_snippet_to_doc โ the area between the comments will be populated with a code block containing the specified source lines. The language for syntax highlighting is detected automatically from the file extension.
Usage as a pre-commit hook
Add to your .pre-commit-config.yaml:
repos:
- repo: https://github.com/igrr/code_snippet_to_doc.git
rev: v0.1.0
hooks:
- id: code_snippet_to_doc
To update additional files beyond README.md, specify them in args::
repos:
- repo: https://github.com/igrr/code_snippet_to_doc.git
rev: v0.1.0
hooks:
- id: code_snippet_to_doc
args: [--input=README.md, --input=docs/GUIDE.md, --input=docs/api.rst]
Command-line usage
Usage:
code_snippet_to_doc [-h] [-i INPUT [INPUT ...]] [--check] [--version]
Optional arguments:
-i INPUT [INPUT ...],--input INPUT [INPUT ...]: Documentation file to update (can be specified multiple times).--check: Check if the files need to be updated, but don't modify them. Non-zero exit code is returned if any file needs to be updated.--version: show program's version number and exit
Example
Given a source file example.c:
#include <stdio.h>
// Main function
int main(int argc, char *argv[]) {
printf("Hello, World!\n");
return 0;
}
And a Markdown file containing:
Running code_snippet_to_doc -i README.md will populate the snippet block with the main function body from example.c:
```c
int main(int argc, char *argv[]) {
printf("Hello, World!\n");
return 0;
}
```
License
This tool is Copyright (c) 2026 Ivan Grokhotkov and distributed under the MIT License.
