Dev

Dev

37 bookmarks
Newest
Automad / Getting Started
Automad / Getting Started
Automad is a PHP application and therefore requires a web server to run. However, the list of system requirements is rather short. You can choose between three ...
·automad.org·
Automad / Getting Started
Variables | Jekyll • Simple, blog-aware, static sites
Variables | Jekyll • Simple, blog-aware, static sites
Jekyll traverses your site looking for files to process. Any files with front matter are subject to processing. For each of these files, Jekyll makes a variety of data available via Liquid. The following is a reference of the available data.
·jekyllrb.com·
Variables | Jekyll • Simple, blog-aware, static sites
Hugo Wikilink Support | Quinn Casey
Hugo Wikilink Support | Quinn Casey
The static site generator Hugo doesn’t yet support Wikilinks. This is being considered on this github issue, but in the meantime we need to parse each page’s content to replace wikilinks with a relref internal page link. I use the following code snippet to support wikilinks in Hugo. It can be invoked when you’d normally use {{ .Content }} by calling this instead: {{- partial "content-with-wikilinks" . -}}. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 {{/* Prints page content with two types of wikilinks rendered (with and without text).
·quinncasey.com·
Hugo Wikilink Support | Quinn Casey