Basic syntax highlighting
This commit is contained in:
parent
2c38910ccd
commit
37e92392ca
4 changed files with 87 additions and 3 deletions
|
@ -5,13 +5,17 @@ use DB::BlogMeta;
|
|||
|
||||
unit class Config;
|
||||
|
||||
|
||||
method generate-post(Str:D $title, Str:D $content, BlogMeta:D $meta) {
|
||||
my $head =
|
||||
head [
|
||||
my $head = head [
|
||||
meta :charset<utf-8>;
|
||||
meta :name<viewport>, :content<width=device-width, initial-scale=1>;
|
||||
title "{$meta.title} — $title";
|
||||
# TODO: Add style sheets
|
||||
# Use Iosevka Alie as the monospace font
|
||||
link :rel<stylesheet>,
|
||||
:href<https://static.stranger.systems/fonts/IosevkaAlie/IosevkaAile.css>;
|
||||
style %?RESOURCES<code.css>.slurp;
|
||||
# TODO: Add description
|
||||
# TODO: Add header links
|
||||
];
|
||||
|
|
|
@ -60,11 +60,24 @@ sub pack(*@args) {
|
|||
# Run a katla command, erroring on failure, returning the standard out, and
|
||||
# mangling the output accordingly
|
||||
sub katla(*@args --> Str:D) {
|
||||
# Run the requested katla command
|
||||
my $katla = run 'katla', @args, :out, :err;
|
||||
my $katla-out = $katla.out.slurp: :close;
|
||||
my $katla-err = $katla.err.slurp: :close;
|
||||
die "Katla exited with {$katla.exitcode}\nout: $katla-out\nerr: $katla-err"
|
||||
unless $katla;
|
||||
# TODO modify output
|
||||
# Modify the output to use our styling instead of katla's
|
||||
# Remove the style block and line breaks
|
||||
$katla-out ~~ s:g/'<style>' .* '</style>'//;
|
||||
$katla-out ~~ s:g/'<br />'//;
|
||||
# Use <pre> blocks for the code and inject our own class for idris code
|
||||
$katla-out ~~ s:g/'<code class="' \w+ '">' \s*/<pre><code class="idris-code">/;
|
||||
$katla-out ~~ s:g/\s* '</code>'/<\/code><\/pre>/;
|
||||
# Replace the highlighting classes with our own
|
||||
$katla-out ~~ s:g/'class="Idris' (\w+) '"'/class="hl-{$/[0].lc}"/;
|
||||
# Clean up inappropiate escaping of some characters
|
||||
$katla-out ~~ s:g/'\\*'/*/;
|
||||
$katla-out ~~ s:g/'\\_'/_/;
|
||||
$katla-out ~~ s:g/'\\\\'/\\/;
|
||||
$katla-out
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue