aboutsummaryrefslogtreecommitdiff
path: root/plugins/pygments_code.rb
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-08-20 18:39:00 -0400
committerBrandon Mathis <brandon@imathis.com>2011-08-20 18:39:47 -0400
commit358d02a4a7c9b81e68a1c3778c68b97987b1a360 (patch)
treed80db2ab836e65bf4552ca36dfcb767c477bfb23 /plugins/pygments_code.rb
parent596ec87c37d4f848e478abbbd0690e52eeb37db1 (diff)
downloadmy_new_personal_website-358d02a4a7c9b81e68a1c3778c68b97987b1a360.tar.xz
my_new_personal_website-358d02a4a7c9b81e68a1c3778c68b97987b1a360.zip
centralized pygments aliases into pygments_code.rb. Added alias for .ru (ruby), which sort of fixes #108
Diffstat (limited to 'plugins/pygments_code.rb')
-rw-r--r--plugins/pygments_code.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/pygments_code.rb b/plugins/pygments_code.rb
index 1930ec83..67ce8c34 100644
--- a/plugins/pygments_code.rb
+++ b/plugins/pygments_code.rb
@@ -7,6 +7,10 @@ FileUtils.mkdir_p(PYGMENTS_CACHE_DIR)
module HighlightCode
def highlight(str, lang)
+ lang = 'ruby' if lang == 'ru'
+ lang = 'objc' if lang == 'm'
+ lang = 'perl' if lang == 'pl'
+ lang = 'yaml' if lang == 'yml'
str = pygments(str, lang).match(/<pre>(.+)<\/pre>/m)[1].to_s.gsub(/ *$/, '') #strip out divs <div class="highlight">
tableize_code(str, lang)
end