aboutsummaryrefslogtreecommitdiff
path: root/plugins/code_block.rb
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-09-07 18:32:57 -0500
committerBrandon Mathis <brandon@imathis.com>2011-09-07 18:34:21 -0500
commit3d2d1a8be49f3d2db16618014d38d5b93ef0c58f (patch)
tree7fd6c0d6ccdbdd0504a8ac494d39f3f91afc048a /plugins/code_block.rb
parentb25db54f938899b99d360a91e228d8b43838804c (diff)
downloadmy_new_personal_website-3d2d1a8be49f3d2db16618014d38d5b93ef0c58f.tar.xz
my_new_personal_website-3d2d1a8be49f3d2db16618014d38d5b93ef0c58f.zip
1. Vastly improved backtick code blocks and added support for Textile
2. Refactored Octopress filters into Liquid filters and pre/post render filters (using post_filters plugin) 3. Added methods to raw plugin to prevent Markdown and Textile from parsing blocks 4. Updated render partial to invoke the pre_render method of post_filters 5. Moved Rubypants filter out of default.html into Octopress post_render filters 6. Added raw's safe_wrapper method to codeblock and include_code filters
Diffstat (limited to 'plugins/code_block.rb')
-rw-r--r--plugins/code_block.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/plugins/code_block.rb b/plugins/code_block.rb
index 9c971bf5..00b0b438 100644
--- a/plugins/code_block.rb
+++ b/plugins/code_block.rb
@@ -42,11 +42,13 @@
# </figure>
#
require './plugins/pygments_code'
+require './plugins/raw'
module Jekyll
class CodeBlock < Liquid::Block
include HighlightCode
+ include TemplateWrapper
CaptionUrlTitle = /(\S[\S\s]*)\s+(https?:\/\/)(\S+)\s+(.+)/i
CaptionUrl = /(\S[\S\s]*)\s+(https?:\/\/)(\S+)/i
Caption = /(\S[\S\s]*)/
@@ -78,14 +80,15 @@ module Jekyll
def render(context)
output = super
code = super.join
- source = "<div><figure role=code>"
+ source = "<figure role=code>"
source += @caption if @caption
- source = context['pygments_prefix'] + source if context['pygments_prefix']
if @filetype
- source += " #{highlight(code, @filetype)}</figure></div>"
+ source += " #{highlight(code, @filetype)}</figure>"
else
- source += "#{tableize_code(code.lstrip.rstrip.gsub(/</,'&lt;'))}</figure></div>"
+ source += "#{tableize_code(code.lstrip.rstrip.gsub(/</,'&lt;'))}</figure>"
end
+ source = safe_wrap(source)
+ source = context['pygments_prefix'] + source if context['pygments_prefix']
source = source + context['pygments_suffix'] if context['pygments_suffix']
end
end