Extensions for the Nanoc static-site generator.
Find a file
Thomas Hochstein 1e3c716f14 Transform some if-statemens.
Signed-off-by: Thomas Hochstein <thh@inter.net>
2017-05-25 23:01:49 +02:00
_doc/dejure Fix markdown errors in changelog, bump version. 2017-05-25 15:49:18 +02:00
lib/filters Transform some if-statemens. 2017-05-25 23:01:49 +02:00
LICENSE Update copyright dates. 2017-04-29 01:31:08 +02:00
README.md Add DeJureIntegrator filter. 2017-04-29 01:30:46 +02:00

nanoc extensions

nanoc is a popular static site generator.

I'll add some little extensions for nanoc (v3) here.

filters

abbreviations.rb

Simple nanoc filter to add <abbr> tags.

After reading a YAML document from /content/_data/abbreviations.yam, all occurences of each $abbrev are replaced by a <abbr title="$abbrev">$fulltext</abbr> construct.

The filter currently uses a very naive - and time consuming - regexp approach.

The abbreviations dictionay in /content/_data/abbreviations.yaml has to look like this:

---
  abbreviations:
  - abbrev: HTML
  fulltext: HyperText Markup Language

You'll need a (compile and) routing rule to stop the abbreviations.yaml from being rendered and compiled, i.e. like this:

# ignore everything starting with _
compile %r{/_} do
  nil
end
route %r{/_} do
  nil
end

dejure.rb

nanoc filter implementation of the dejure.org legal integration service.

filter :dejure,
  format: 'weit',
  buzer: 1,
  target: '_blank',
  class: 'dejure'