aboutsummaryrefslogtreecommitdiff
path: root/plugins/code_block.rb
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2015-05-04 14:55:10 -0700
committerZhiming Wang <zmwangx@gmail.com>2015-05-04 14:55:10 -0700
commit301679861a2440a10c9eac746cec86459f445ef9 (patch)
tree5aad22ead01cf0da226623f603f33867896c0fea /plugins/code_block.rb
parentd0a07c64afba47bbe8bfb56ba9893296a73fc7db (diff)
downloadmy_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.tar.xz
my_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.zip
remove all Octopress stuff
Diffstat (limited to 'plugins/code_block.rb')
-rw-r--r--plugins/code_block.rb92
1 files changed, 0 insertions, 92 deletions
diff --git a/plugins/code_block.rb b/plugins/code_block.rb
deleted file mode 100644
index 539a3475..00000000
--- a/plugins/code_block.rb
+++ /dev/null
@@ -1,92 +0,0 @@
-# Title: Simple Code Blocks for Jekyll
-# Author: Brandon Mathis http://brandonmathis.com
-# Description: Write codeblocks with semantic HTML5 <figure> and <figcaption> elements and optional syntax highlighting — all with a simple, intuitive interface.
-#
-# Syntax:
-# {% codeblock [title] [url] [link text] %}
-# code snippet
-# {% endcodeblock %}
-#
-# For syntax highlighting, put a file extension somewhere in the title. examples:
-# {% codeblock file.sh %}
-# code snippet
-# {% endcodeblock %}
-#
-# {% codeblock Time to be Awesome! (awesome.rb) %}
-# code snippet
-# {% endcodeblock %}
-#
-# Example:
-#
-# {% codeblock Got pain? painreleif.sh http://site.com/painreleief.sh Download it! %}
-# $ rm -rf ~/PAIN
-# {% endcodeblock %}
-#
-# Output:
-#
-# <figure class='code'>
-# <figcaption><span>Got pain? painrelief.sh</span> <a href="http://site.com/painrelief.sh">Download it!</a>
-# <div class="highlight"><pre><code class="sh">
-# -- nicely escaped highlighted code --
-# </code></pre></div>
-# </figure>
-#
-# Example 2 (no syntax highlighting):
-#
-# {% codeblock %}
-# <sarcasm>Ooooh, sarcasm... How original!</sarcasm>
-# {% endcodeblock %}
-#
-# <figure class='code'>
-# <pre><code>&lt;sarcasm> Ooooh, sarcasm... How original!&lt;/sarcasm></code></pre>
-# </figure>
-#
-require './plugins/pygments_code'
-require './plugins/raw'
-
-module Jekyll
-
- class CodeBlock < Liquid::Block
- CaptionUrlTitle = /(\S[\S\s]*)\s+(https?:\/\/\S+|\/\S+)\s*(.+)?/i
- Caption = /(\S[\S\s]*)/
- def initialize(tag_name, markup, tokens)
- @title = nil
- @caption = nil
- @filetype = nil
- @highlight = true
- if markup =~ /\s*lang:(\S+)/i
- @filetype = $1
- markup = markup.sub(/\s*lang:(\S+)/i,'')
- end
- if markup =~ CaptionUrlTitle
- @file = $1
- @caption = "<figcaption><span>#{$1}</span><a href='#{$2}'>#{$3 || 'link'}</a></figcaption>"
- elsif markup =~ Caption
- @file = $1
- @caption = "<figcaption><span>#{$1}</span></figcaption>\n"
- end
- if @file =~ /\S[\S\s]*\w+\.(\w+)/ && @filetype.nil?
- @filetype = $1
- end
- super
- end
-
- def render(context)
- output = super
- code = super
- source = "<figure class='code'>"
- source += @caption if @caption
- if @filetype
- source += "#{HighlightCode::highlight(code, @filetype)}</figure>"
- else
- source += "#{HighlightCode::tableize_code(code.lstrip.rstrip.gsub(/</,'&lt;'))}</figure>"
- end
- source = TemplateWrapper::safe_wrap(source)
- source = context['pygments_prefix'] + source if context['pygments_prefix']
- source = source + context['pygments_suffix'] if context['pygments_suffix']
- source
- end
- end
-end
-
-Liquid::Template.register_tag('codeblock', Jekyll::CodeBlock)