diff options
author | Jonas Smedegaard <dr@jones.dk> | 2021-06-04 20:21:50 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2021-06-04 20:21:50 +0200 |
commit | 56e96aa6ef4a08184c2e85387d9c1ee52d669ec2 (patch) | |
tree | 86ddeaf9879fe4fe018f3e4a276451addcc43871 /bin/mkdocs-prep.pl | |
parent | 29f911b173093cf2037bea03fb49bf5c2c55a7c6 (diff) | |
parent | d2679dcda9fcf6fe518d18befd4c7f146e7e5d51 (diff) |
Merge branch 'master' of xayide.jones.dk:/srv/git/source.redpill.dk/features
Diffstat (limited to 'bin/mkdocs-prep.pl')
-rwxr-xr-x | bin/mkdocs-prep.pl | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/bin/mkdocs-prep.pl b/bin/mkdocs-prep.pl new file mode 100755 index 0000000..7d9b1d3 --- /dev/null +++ b/bin/mkdocs-prep.pl @@ -0,0 +1,87 @@ +#!/usr/bin/perl + +use v5.18; # needed for \h (horizontal whitespace) in regexes +use strict; +use warnings; +use autodie; +use List::Util qw(pairs); +use Config::Tiny; +use Path::Tiny; +use Text::Hogan::Compiler; +use IO::Prompter; + +=head1 NAME + +mkdocs-prep - mkdocs preprocessor expanding inline hints and mustache tokens + +=head1 VERSION + +Version 0.02 + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +B<mkdocs-prep> prepares a markdown document for B<mkdocs> processing. + +The document is converted using inline hint section to a mustache template +and resolved using an external set of single-word tokens. + +A document section named "Special strings" is parsed for token definitions +where each line lists a single-word token, a colon, and default string. +The section is then stripped, +and all occurences of default strings are replaced with tokens +wrapped with double curly brackets. + +Template tokens are gathered from external config file F<site.mk>, +where each line lists a token, an equals sign, and replacement string. + +Inline defined tokens not declared in F<site.mk> will be prompted for. +if a value is provided it will be used, and also saved in F<site.mk>. +If no value is provided then inline default string is used. + +Each token in the document, +wrapped with double curly brackets {{like_this}}, +is replaced (including brackets) with corresponding string. + +=cut + +my ( $infile, $outfile ) = @ARGV; +@ARGV = undef; + +my $cfgfile = path('site.mk'); +my $config = $cfgfile->exists + ? Config::Tiny->read( $cfgfile, 'utf8' ) + : Config::Tiny->new; +my $config_has_changed; + +my $content = path($infile)->slurp_utf8; + +$content =~ s/^#+\s*Special strings\s*\n((?:\n|[^#\n][^\n]*\n)*)//m; +my $section = $1 || ''; +my %defaults; +while ( $section =~ /^(\w+)\h*:\h*(\w\S*(?:\h+\S+)*)/mg ) { + my $token = $1; + my $string = $2; + + unless ( exists $config->{_}->{$1} ) { + $_ = prompt "Which string should replace token '$token'?"; + next unless length $_; + $config->{_}->{$1} = $_; + $config_has_changed++; + } + + $content =~ s/\Q$string\E/{{$token}}/g; +}; + + +my $compiler = Text::Hogan::Compiler->new; +my $template = $compiler->compile($content); + +path($outfile)->spew_utf8( $template->render( $config->{_} ) ); + +$cfgfile->touch; +$config->write( $cfgfile, 'utf8' ) + if $config_has_changed; + +1; |