ornate
ornate copied to clipboard
A Markdown-based site generator
This allows me to build documentation site in slick project for each scala version at slick/slick#2106. ```scala override lazy val projectSettings = inConfig(Ornate)(Defaults.configSettings) ++ Seq( ornateBaseDir := Some(sourceDirectory.value), ... libraryDependencies...
According to the [documentation](https://github.com/szeiger/ornate/blob/2dbc96eeb4e3ddfd8eb5c5633198c2f02dfd4ac8/doc/src/markdown.md#headerattributes-and-autoidentifiers-header_attributes), when page headings that don't have a user-supplied `id`, one is generated using the [Pandoc `id`-generation algorithm](https://pandoc.org/MANUAL.html#headings-and-sections). As such, if a period character (`.`) appears in...
I know this is a static site generator, but it seems image media handling tends to be a sore point with static site generators. If I want to give a...
Running ornate in JRE8 produces the following stack trace: ``` [I] c.n.o.PageParser: Parsing 6 source files [I] c.n.ornate.Main: Processing site [I] c.n.ornate.Main: Rendering site [E] ghlightJSHighlighter: Error running highlight.js javax.script.ScriptException:...
Resolving the WebJars with JavaScript dependencies is slow because they use version ranges. We should declare all transitive dependencies of this kind directly with a fixed version number.
Is it possible to define sub-entries in the TOC? I would like them to be collapsed by default, e.g.: - foo - quux But, when one entry is selected, then...