You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.1 KiB
1.1 KiB
Imports
A key feature of Snekdown is splitting a document into several files and importing those files in the main document.
Additionally files that provide Glossary entries, Bibliography, Style and Configurations can be imported with the same syntax.
<[path]
# import another snekdown document at the current position
<[document.md]
# import a stylesheet that will be embedded in the document
<[style.css][type=stylesheet]
# import a configuration file
<[Manifext.toml]
# import bibliography
<[MyBib.toml][type=bibliography]
# import a glossary
<[MyGls.toml][type=glossary]
The parser differentiates five different types of imported files.
document
- The default import which is just another Snekdown documentstylesheet
- CSS Stylesheets that are included when renderingbibliography
- A file including bibliographyconfig/manifest
- A config file that contains metadataglossary
- Glossary entries
Imports of Snekdown documents are parsed in a separate thread, so you might see a performance improvement when splitting a large document into several files.