mdbook/tests/testsuite/markdown/basic_markdown/src/code-blocks.md
Eric Huss 03443f723c Add more comprehensive tests for HTML rendering
This adds a bunch of tests to better exercise the HTML rendering and to
be able to track any changes in its behavior.

This includes a new `check_all_main_files` to more conveniently check
the HTML content of every chapter in a book.
2025-09-16 14:07:54 -07:00

315 B

Code blocks

This is a codeblock
// This links to a playpen
# This is an editable codeblock
Text with different classes.
Indented
code
block.
let x = 1;
fn main() {
    println!("hello");
}