mdbook
Creates a book from markdown files
0.5.4
10.0M downloads/mo
#3129 most downloaded on crates.io
rust-lang/mdBook
What this package is like to depend on
Last release 1 months ago
06 Jul 2026
Release timing varies
gaps range from 9 days to 5 months
Most releases are documented
notes for 65 of 102 stable releases
7 versions withdrawn
withdrawn after publishing
11 years old
112 releases · first in 2015
8 releases in the last 12 months
see the full history below
Release timeline
112 releases · Aug 2015 to Jul 2026Releases
latest 60 of 112-
0.5.406 Jul 2026Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-054 for a complete list of changes.
-
0.5.319 May 2026Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-053 for a complete list of changes.
Release notes
Open source →Changed
- Improve spacing in sidebar section headings. #3122
- Updated cargo dependencies. #3083 #3077 #3058 #3057 #3042 #3045 #3044 #3036 #3022 #3017 #3018 #3019 #2998 #2996
Fixed
- The "current" page highlighting in the sidebar now handles servers that redirect and strip the
.htmlextension. #3028 - Remove
?highlight=from URL when highlights are dismissed via clicking. #3084 - Fix global keypresses triggering when other elements are in focus. #3087
- Fix download URL format for mdBook in CI guide. #3073
- Improve error message for invalid Font Awesome icons. #3037
- Fix nested admonitions that use wrong header colors. #3035
-
0.5.211 Dec 2025Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-052 for a complete list of changes.
-
0.5.120 Nov 2025Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-051 for a complete list of changes.
Release notes
Open source →Changed
- Changed the scrollbar background to be transparent. #2932
- Ignore invalid top-level environment variable config keys. This allows setting things like
MDBOOK_VERSIONto not cause an error. #2952
Fixed
-
0.5.017 Nov 2025Release notes
Open source →The 0.5.0 release is the next major release of mdBook, containing over 130 PRs since 0.4.52! The primary focus for this release has been an evolution of the Rust APIs to make it easier to maintain, to evolve in a backwards-compatible fashion, to clean up some things that have accumulated over time, and to significantly improve the performance and compile-times.
This release also includes many new features described in the CHANGELOG.
We have prepared a 0.5 Migration Guide to help existing authors switch from 0.4.
Release notes
Open source →The 0.5.0 release is the next major release of mdBook, containing over 130 PRs since 0.4.52! The primary focus for this release has been an evolution of the Rust APIs to make it easier to maintain, to evolve in a backwards-compatible fashion, to clean up some things that have accumulated over time, and to significantly improve the performance and compile-times.
This release also includes many new features described below.
We have prepared a 0.5 Migration Guide to help existing authors switch from 0.4.
The final 0.5.0 release only contains the following changes since 0.5.0-beta.2:
- Added error handling to environment config handling. This checks that environment variables starting with
MDBOOK_are correctly specified instead of silently ignoring. This also fixed being able to replace entire top-level tables likeMDBOOK_OUTPUT. #2942
- Added error handling to environment config handling. This checks that environment variables starting with
-
0.5.0-beta.208 Nov 2025 pre-releaseRelease notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-beta2 for a complete list of changes.
Release notes
Open source →Added
- Added a warning when a Font Awesome icon is missing. #2915
- Added some trace logging for event processing. #2911
- Added
Config::contains_key. #2910
Changed
- Heading IDs are now lowercase. #2922
- Updated cargo dependencies. #2916
- Removed italics for in quotes/comments in code blocks with the
ayutheme. #2904 - Exposed "search" feature from mdbook-driver. #2907
Fixed
- Fixed rust fenced code blocks with an indent. #2905
- Headers and
dttags are no longer modified if the tag is manually written HTML. #2913 - Fixed print page links for internal links to non-chapters. #2914
- Better handling for unbalanced HTML tags. #2924
- Handle unclosed HTML tags inside a markdown element. #2927
- Fixed missing font-awesome icons in the guide. #2926
- Hide the sidebar resize indicator when JS isn't available. #2923
-
0.5.0-beta.126 Oct 2025 pre-releaseRelease notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-beta1 for a complete list of changes.
Release notes
Open source →v0.5.0-alpha.1...v0.5.0-beta.1
Changed
- Reworked the look of the header navigation. #2898
- Update cargo dependencies. #2896
- Improved the heading nav debug. #2892
Fixed
-
0.5.0-alpha.128 Sep 2025 pre-releaseRelease notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-alpha1 for a complete list of changes.
Release notes
Open source →Added
- The location of the generated HTML book is now displayed on the console. #2729
- ❗ Added the
optionalfield for preprocessors. The default isfalse, so this also changes it so that it is an error if the preprocessor is missing. #2797 - ❗ Added
MarkdownOptionsstruct to specify settings for markdown rendering. #2809 - Added sidebar heading navigation. This includes the
output.html.sidebar-header-navoption to disable it. #2822 - Added the mdbook version to the guide. #2826
- Added
Book::chaptersandBook::for_each_chapter_mutto more conveniently iterate over chapters (instead of all items). #2838 - ❗ Added support for definition lists. These are enabled by default, with the option
output.html.definition-liststo disable it. #2847 - ❗ Added support for admonitions. These are enabled by default, with the option
output.html.admonitionsto disable it. #2851
Changed
- ❗ The
mdbookcrate has been split into multiple crates. #2766 - The minimum Rust version has been updated to 1.88. #2844
- ❗
pulldown-cmarkhas been upgraded to 0.13.0, bringing a large number of fixes to markdown processing. #2401 - ❗ Switched public types to
non_exhaustiveto help allow them to change in a backwards-compatible way. #2779 #2823 - ❗ Unknown fields in config are now an error. #2787 #2801
- ❗ Changed
id_from_contentto be private. #2791 - ❗ Changed preprocessor
commandto use paths relative to the book root. #2796 - ❗ Replaced the
{{#previous}}and{{#next}}handlebars navigation helpers with objects. #2794 - ❗ Use embedded SVG instead of fonts for icons, font-awesome 6.2. #1330
- The
book.srcfield is no longer serialized if it is the default of "src". #2800 - ❗ Changed
MDBookwith_renderer/with_preprocessorto overwrite the entry if an extension of the same name is already loaded. #2802 - ❗ Changed CLI
--dest-dirto be relative to the current directory, not the book root. #2806 - ❗ Changed all internal HTML IDs to have an
mdbook-prefix. This helps avoid namespace conflicts with header IDs. #2808 - ❗
output.html.smart-punctuationis nowtrueby default. #2810 - ❗ Renamed
Book::sectionstoBook::items. #2813 - ❗
output.html.hash-filesis nowtrueby default. #2820 - Switched from
logtotracing. #2829 - ❗ Rewrote the HTML rendering pipeline. #2844
- ❗ Links on the print page now link to elements on the print page instead of linking out to the individual chapters. #2844
- ❗ Moved theme copy to the Theme type and reduced visibility. #2857
- ❗ Cleaned up some fs-related utilities. #2856
- ❗ Moved
get_404_output_filetoHtmlConfig. #2855 - ❗ Moved
take_linesfunctions tomdbook-driverand made private. #2854 - Updated dependencies. #2793 #2869
Removed
- ❗ Removed
tomlas a public dependency. #2773 - ❗ Removed the
book.multilingualfield. This was never used. #2775 - ❗ Removed support for google-analytics. #2776
- ❗ Removed the very old legacy config support. #2783
- ❗ Removed
curly-quotes, useoutput.html.smart-punctuationinstead. #2788 - Removed old warning about
book.json. #2789 - ❗ Removed
output.html.copy-fonts. The default fonts are now always copied unless you override thetheme/fonts/fonts.cssfile. #2790 - ❗ Removed legacy relative renderer command paths. Relative renderer command paths now must always be relative to the book root. #2792
- ❗ Removed the
{{theme_option}}handlebars helper. It has not been used for a while. #2795 - ❗ Removed the
--dest-diroption tomdbook test. #2805
Fixed
-
0.4.5214 Jul 2025Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-0452 for a complete list of changes.
Release notes
Open source →Note: If you have a custom
index.hbstheme file, it is recommended that you update it to the latest version to pick up the fixes in this release.Added
- Added the ability to redirect
#HTML fragments using the existingoutput.html.redirecttable. #2747 - Added the
rel="edit"attribute to the edit page button. #2702
Changed
- The search index is now only loaded when the search input is opened instead of always being loaded. #2553 #2735
- The
mdbook servecommand has switched its underlying server library from warp to axum. #2748 - Updated dependencies. #2752
Fixed
- The sidebar is now set to
display:nonewhen it is hidden in order to prevent the browser's search from thinking the sidebar's text is visible. #2725 - Fixed search index URL not updating correctly when
hash-filesis enabled. #2742 #2746 - Fixed several sidebar animation bugs, particularly when manually resizing. #2750
- Added the ability to redirect
-
0.4.5126 May 2025Release notes
Open source →See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-0451 for a complete list of changes.
Release notes
Open source → -
0.4.5023 May 2025Release notes
Open source →Added
- Added a keyboard shortcut help popup when pressing
?. #2608
Changed
- Changed the look of the sidebar resize handle to match the new rustdoc format. #2691
/can now be used to open the search bar. #2698- Pressing enter from the search bar will navigate to the first entry. #2698
- Updated
openerto drop some dependencies. #2709 - Updated dependencies, MSRV raised to 1.82. #2711
Fixed
- Added a keyboard shortcut help popup when pressing
-
0.4.4905 May 2025Release notes
Open source →Added
- Added a warning on unused fields in the root of
book.toml. #2622
Changed
- Updated dependencies. #2650 #2688
- Updated minimum Rust version to 1.81. #2688
- The unused
book.multilingualfield is no longer serialized, or shown inmdbook init. #2689 - Speed up search index loading by using
JSON.parseinstead of parsing JavaScript. #2633
Fixed
- Search highlighting will not try to highlight in SVG
<text>elements because it breaks the element. #2668 - Fixed scrolling of the sidebar when a search highlight term is in the URL. #2675
- Fixed issues when multiple footnote definitions use the same ID. Now, only one definition is used, and a warning is displayed. #2681
- The sidebar is now restricted to 80% of the viewport width to make it possible to collapse it when the viewport is very narrow. #2679
- Added a warning on unused fields in the root of
-
0.4.4831 Mar 2025Release notes
Open source →Added
- Footnotes now have back-reference links. These links bring the reader back to the original location. As part of this change, footnotes are now only rendered at the bottom of the page. This also includes some styling updates and fixes for footnote rendering. #2626
- Added an "Auto" theme selection option which will default to the system-preferred mode. This will also automatically switch when the system changes the preferred mode. #2576
Changed
-
0.4.4709 Mar 2025Release notes
Open source → -
0.4.4608 Mar 2025Release notes
Open source →Changed
- The
output.html.hash-filesconfig option has been added to add hashes to static filenames to bust any caches when a book is updated.{{resource}}template tags have been added so that links can be properly generated to those files. #1368
Fixed
- Playground links for Rust 2024 now set the edition correctly. #2557
- The
-
0.4.4517 Feb 2025Release notes
Open source →Changed
- Added context to error message when rustdoc is not found. #2545
- Slightly changed the styling rules around margins of footnotes. #2524
Fixed
- Fixed an issue where it would panic if a source_path is not set. #2550
-
0.4.4428 Jan 2025Release notes
Open source →Added
- Added pre-built aarch64-apple-darwin binaries to the releases. #2500
mdbook cleannow shows a summary of what it did. #2458- Added the
output.html.search.chapterconfig setting to disable search indexing of individual chapters. #2533
Fixed
- Fixed auto-scrolling the side-bar when loading a page with a
#fragment URL. #2517 - Fixed display of sidebar when javascript is disabled. #2529
- Fixed the sidebar visibility getting out of sync with the button. #2532
Changed
-
0.4.4325 Nov 2024Release notes
Open source →Fixed
- Fixed setting the title in
mdbook initwhen no git user is configured. #2486
Changed
- The Rust 2024 edition no longer needs
-Zunstable-options. #2495
- Fixed setting the title in
-
0.4.4207 Nov 2024 -
0.4.4106 Nov 2024Release notes
Open source →Note: If you have a custom
index.hbstheme file, you will need to update it to the latest version.Added
- Added preliminary support for Rust 2024 edition. #2398
- Added a full example of the remove-emphasis preprocessor. #2464
Changed
- Adjusted styling of clipboard/play icons. #2421
- Updated to handlebars v6. #2416
- Attr and section rules now have specific code highlighting. #2448
- The sidebar is now loaded from a common file, significantly reducing the book size when there are many chapters. #2414
- Updated dependencies. #2470
Fixed
-
0.4.4017 May 2024Release notes
Open source → -
0.4.3917 May 2024 withdrawnRelease notes
Open source → -
0.4.3816 May 2024 withdrawnRelease notes
Open source →Added
- Added
nixto the default set of languages supported for syntax highlighting. #2262
Changed
- The
output.html.curly-quotesoption has been renamed tooutput.html.smart-punctuationto better reflect what it does. The old optioncurly-quotesis kept for compatibility, but may be removed in the future. #2327 - The file-watcher used in
mdbook serveandmdbook watchnow uses a poll-based watcher instead of the native operating system notifications. This should fix issues on various systems and environments, and more accurately detect when files change. The native watcher can still be used with the--watcher nativeCLI option. #2325 mdbook testoutput now includes color, and shows relative paths to the source. #2259- Updated dependencies, MSRV raised to 1.74 #2350 #2351 #2378 #2381
Fixed
- Added
-
0.4.3707 Feb 2024Release notes
Open source →Changed
- ❗️ Updated the markdown parser. This brings in many changes to more closely follow the CommonMark spec. This may cause some small rendering changes. It is recommended to compare the output of the old and new version to check for changes. See https://github.com/raphlinus/pulldown-cmark/releases/tag/v0.10.0 for more information. #2308
- The warning about the legacy
src/themedirectory has been removed. #2263 - Updated dependencies. MSRV raised to 1.71.0. #2283 #2293 #2297 #2310 #2309
- Some internal performance/memory improvements. #2273 #2290
- Made the
pathdiffdependency optional based on thewatchfeature. #2291
Fixed
- The
sshortcut key handler should not trigger when focus is in an HTML form. #2311
-
0.4.3629 Nov 2023Release notes
Open source →Added
- Added Nim to the default highlighted languages. #2232
- Added a small indicator for the sidebar resize handle. #2209
Changed
Fixed
-
0.4.3529 Sep 2023Release notes
Open source →Added
- Added the
book.text-directionsetting for explicit support for right-to-left languages. #1641 - Added
rel=prefetchto the "next" links to potentially improve browser performance. #2168 - Added a
.warningCSS class which is styled for displaying warning blocks. #2187
Changed
- Better support of the sidebar when JavaScript is disabled. #2175
- Added the
-
0.4.3405 Aug 2023Release notes
Open source →Fixed
- Fixed file change watcher failing on macOS with a large number of files. #2157
-
0.4.3304 Aug 2023Release notes
Open source →Added
- The
color-schemeCSS property is now set based on the light/dark theme, which applies some slight color differences in browser elements like scroll bars on some browsers. #2134
Fixed
- Fixed watching of extra-watch-dirs when not running in the book root directory. #2146
- Reverted the dependency update to the
tomlcrate (again!). This was an unintentional breaking change in 0.4.32. #2021 - Changed macOS change notifications to use the kqueue implementation which should fix some issues with repeated rebuilds when a file changed. #2152
- Don't set a background color in the print page for code blocks in a header. #2150
- The
-
0.4.3217 Jul 2023Release notes
Open source → -
0.4.3129 Jun 2023 -
0.4.3028 May 2023Release notes
Open source →Added
- Added support for heading attributes.
Attributes are specified in curly braces just after the heading text.
An HTML ID can be specified with
#and classes with.. For example:## My heading {#custom-id .class1 .class2}#2013 - Added support for hidden code lines for languages other than Rust.
The
output.html.code.hidelinestable allows you to define the prefix character that will be used to hide code lines based on the language. #2093
Fixed
- Fixed a few minor markdown rendering issues. #2092
- Added support for heading attributes.
Attributes are specified in curly braces just after the heading text.
An HTML ID can be specified with
-
0.4.2913 May 2023Release notes
Open source →Changed
- Built-in fonts are no longer copied when
fonts/fonts.cssis overridden in the theme directory. Additionally, the warning aboutcopy-fontshas been removed iffonts/fonts.cssis specified. #2080 mdbook init --forcenow skips all interactive prompts as intended. #2057- Updated dependencies #2063 #2086 #2082 #2084 #2085
Fixed
- Switched from the
gitignorelibrary toignore. This should bring some improvements with gitignore handling. #2076
- Built-in fonts are no longer copied when
-
0.4.2805 Mar 2023Release notes
Open source →Changed
- The sidebar is now shown on wide screens when localstorage is disabled. #2017
- Preprocessors are now run with
mdbook test. #1986
Fixed
- Fixed regression in 0.4.26 that prevented the title bar from scrolling properly on smaller screens. #2039
-
0.4.2713 Feb 2023Release notes
Open source →Changed
- Reverted the dependency update to the
tomlcrate. This was an unintentional breaking change in 0.4.26. #2021
- Reverted the dependency update to the
-
0.4.2609 Feb 2023 withdrawnRelease notes
Open source →The 0.4.26 release has been yanked due to an unintentional breaking change.
Changed
- Removed custom scrollbars for webkit browsers #1961
- Updated some dependencies #1998 #2009 #2011
- Fonts are now part of the theme.
The
output.html.copy-fontsoption has been deprecated. To define custom fonts, be sure to definetheme/fonts.css. #1987
Fixed
- Fixed overflow viewport issue with mobile Safari #1994
-
0.4.2517 Dec 2022Release notes
Open source →Fixed
- Fixed a regression where
mdbook test -L deps path-to-bookwould not work. #1959
- Fixed a regression where
-
0.4.2415 Dec 2022Release notes
Open source →Fixed
- The precompiled linux-gnu mdbook binary available on GitHub Releases inadvertently switched to a newer version of glibc. This release goes back to an older version that should be more compatible on older versions of Linux. #1955
-
0.4.2315 Dec 2022Release notes
Open source →Changed
Fixed
- Fixed a regression where playground code was missing hidden lines, preventing it from compiling correctly. #1950
-
0.4.2228 Nov 2022Release notes
Open source →Added
- Added a
--chapteroption tomdbook testto specify a specific chapter to test. #1741 - Added CSS styling for
<kbd>tags. #1906 - Added pre-compiled binaries for
x86_64-unknown-linux-muslandaarch64-unknown-linux-musl(see Releases). #1862 - Added
build.extra-watch-dirswhich is an array of additional directories to watch for changes when runningmdbook serve. #1884
Changed
- Removed the
type="text/javascript"attribute from<script>tags. #1881 - Switched to building with Rust Edition 2021. This raises the minimum supported Rust version to 1.56. #1887
- When hidden code is hidden, the hidden parts are no longer copied to the clipboard via the copy button. #1911
- Various HTML changes and fixes to be more compliant with HTML5. #1924
- The theme picker now shows which theme is currently selected. #1935
Fixed
- Avoid blank line at the end of an ACE code block #1836
- Added a
-
0.4.2122 Jul 2022Release notes
Open source →Fixed
- Fixed an issue where mdBook would fail to compile with Rust nightly-2022-07-22. #1861
-
0.4.2014 Jul 2022Release notes
Open source →Fixed
- Fixed a regression in 0.4.19 where inline code would have excessive padding in some situations such as headings. #1855
-
0.4.1901 Jul 2022Release notes
Open source →Added
- The
servecommand now supports HEAD requests. #1825
Changed
- An error is now generated when a custom theme directory does not exist. #1791
- Very wide tables now have independent horizontal scrolling so that scrolling to see the rest of the table will not scroll the entire page. #1617
- The buttons on code blocks are now only shown when the mouse cursor hovers over them (or tapped on mobile). There is also some extra spacing to reduce the overlap with the code. #1806
- The first chapter always generates an
index.htmlfile. Previously it would only generate the index file for prefix chapters. #1829
Fixed
- The
-
0.4.1815 Apr 2022Release notes
Open source →Fixed
- Fixed rendering of SUMMARY links that contain markdown escapes or other markdown elements. #1785
-
0.4.1730 Mar 2022Release notes
Open source → -
0.4.1630 Mar 2022 withdrawnRelease notes
Open source →Added
- Added
output.html.print.page-breakconfig option to control whether or not there is a page break between chapters in the print output. #1728 - Added
output.html.playground.runnableconfig option to globally disable the run button in code blocks. #1546
Changed
- The
mdbook servelive reload websocket now uses the protocol, host, and port of the current page, allowing access through a proxy. #1771 - The 404 not-found page now includes the books title in the HTML title tag. #1693
- Migrated to clap 3.0 which handles CLI option parsing. #1731
Fixed
- Added
-
0.4.1504 Jan 2022Release notes
Open source →Changed
- Major update to expand the documentation located at https://rust-lang.github.io/mdBook/. #1709 #1710
- Updated the markdown parser with various fixes for common-mark compliance. #1712
-
0.4.1427 Nov 2021Release notes
Open source →Added
- The 2021 Rust edition option has been stabilized. #1642
Changed
- Header anchors no longer include any HTML tags. Previously only a small subset were excluded. #1683
- Deprecated the google-analytics option. Books using this option should place
the appropriate code in the
theme/head.hbsfile instead. #1675
Fixed
-
0.4.1303 Oct 2021 -
0.4.1202 Aug 2021Release notes
Open source →Changed
- Reverted the change to update to highlight.js 11, as it broke hidden code lines. #1597
-
0.4.1126 Jul 2021Release notes
Open source →Added
- Added support for Rust 2021 edition. #1596
- Added
mdbook completionssubcommand which provides shell completions. #1425 - Added
--titleand--ignoreflags tomdbook initto avoid the interactive input. #1559
Changed
- If running a Rust example does not have any output, it now displays the text "No output" instead of not showing anything. #1599
- Code block language tags can now be separated by space or tab (along with commas) to match the behavior of other sites like GitHub and rustdoc. #1469
- Updated
warp(the web server) to the latest version. This also updates the minimum supported Rust version to 1.46. #1612 - Updated to highlight.js 11. This has various highlighting improvements. #1597
Fixed
- Inline code blocks inside a header are no longer highlighted when
output.html.playground.editableistrue. #1613
-
0.4.1008 Jun 2021 -
0.4.902 Jun 2021 withdrawnRelease notes
Open source →Changed
- Updated all dependencies and raised the minimum Rust version to 1.42. #1528
- Added more detail to error message when a preprocessor fails. #1526
- Set max-width of HTML video tags to 100% to match img tags. #1542
Fixed
-
0.4.810 May 2021Release notes
Open source →Added
- Added the option
output.html.edit-url-templatewhich can be a URL which is linked on each page to direct the user to a site (such as GitHub) where the user can directly suggest an edit for the page they are currently reading. #1506
Changed
- Printed output now includes a page break between chapters. #1485
Fixed
- HTML, such as HTML comments, is now ignored if it appears above the title line
in
SUMMARY.md. #1437
- Added the option
-
0.4.723 Feb 2021Release notes
Open source →Changed
- Updated shlex parser to fix a minor parsing issue (used by the preprocessor/backend custom command config). #1471
- Enhanced text contrast of
lighttheme to improve accessibility. #1470
Fixed
- Fixed some issues with fragment scrolling and linking. #1463
-
0.4.615 Jan 2021Release notes
Open source →Changed
- The chapter name is now included in the search breadcrumbs. #1389
- Pressing Escape will remove the
?highlightargument from the URL. #1427 mdbook init --themewill now place the theme in the root of the book directory instead of in thesrcdirectory. #1432- A custom renderer that sets the
commandto a relative path now interprets the relative path relative to the book root. Previously it was inconsistent based on the platform (either relative to the current directory, or relative to the renderer output directory). Paths relative to the output directory are still supported with a deprecation warning. #1418 - The
themedirectory in the config is now interpreted as relative to the book root, instead of the current directory. #1405 - Handle UTF-8 BOM for chapter sources. #1285
- Removed extra whitespace added to
{{#playground}}snippets. #1375
Fixed
-
0.4.504 Jan 2021Release notes
Open source → -
0.4.420 Oct 2020Release notes
Open source →Added
- Added the
output.html.print.enableconfiguration value to disable the "print" page. #1169 - Added a list of supported languages for syntax-highlighting to the documentation. #1345
Fixed
- Now supports symbolic links for files in the
srcdirectory. #1323
- Added the
-
0.4.308 Sep 2020Release notes
Open source →Added
- Added
output.html.cnameoption to emit aCNAMEfile which is used by GitHub Pages to know which domain is being used. #1311
Changed
mdbook testno longer stops on the first test failure, but instead will run all the tests. #1313- Removed the
localfont source for Source Code Pro, as the locally installed font may not render properly on FireFox on macOS. #1307
Fixed
- Added
-
0.4.211 Aug 2020Release notes
Open source →Changed
- The "show hidden lines" icon has changed from the "expand" icon to an "eye". #1281
- Updated highlight.js. This adds several languages: c, c-like (effectively cpp), csharp (replaces cs), kotlin, less, lua, php-template, plaintext, python-repl, r, scss, typescript. #1277
Fixed
-
0.4.103 Jul 2020