Skip to content

Instantly share code, notes, and snippets.

@zoffixznet

zoffixznet/p6.p6 Secret

Created December 12, 2016 22:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save zoffixznet/356a944e9155846cb3d80cecb233a308 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
use LWP::Simple;
sub MAIN ($gist-url) {
put LWP::Simple.get($gist-url)
.comb(/'<article' <-[>]>+ '>' <(.+?)> '</article>'/)
.subst(:g, 'class="pl-c"', 'style="color: #999;"')
.subst(:g, 'class="pl-c1"', 'style="color: #449;"')
.subst(:g, 'class="pl-k"', 'style="color: blue;"')
.subst(:g, 'class="pl-pds"', 'style="font-weight: bold;"')
.subst(:g, 'class="pl-s"', 'style="color: #994;"')
.subst(:g, 'class="pl-smi"', 'style="color: #440;"')
.subst(:g,
'<pre>',
'<pre style="font-size: 14px; font-family: monospace">'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment