Created
March 9, 2013 08:39
-
-
Save mix3/5123511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use JQueryPresentationHelper; | |
my $title = title "JQueryPresentation"; | |
header q{<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?lang=perl&skin=sunburst"></script>}; | |
hook 'pretty' => sub { $_[0] =~ s/<pre>/<pre class="prettyprint" style="font-size:24px;">/g; $_[0] }; | |
plain q{ | |
## コードハイライトするよ!!! | |
sub echo { | |
print shift, "\n"; | |
} | |
} => 'pretty'; | |
run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment