2011-04-18 03:49:30 +00:00
#custom filters for Octopress
2011-07-27 03:37:31 +00:00
require './plugins/pygments_code'
2011-04-18 03:49:30 +00:00
module OctopressFilters
2011-07-27 03:37:31 +00:00
include HighlightCode
2011-06-27 19:59:21 +00:00
# Used on the blog index to split posts on the <!--more--> marker
2011-07-23 05:16:40 +00:00
def excerpt ( input )
2011-06-27 19:59:21 +00:00
if input . index ( / <!-- \ s*more \ s*--> /i )
input . split ( / <!-- \ s*more \ s*--> /i ) [ 0 ]
2011-06-19 19:14:01 +00:00
else
input
end
end
2011-06-27 19:59:21 +00:00
# Summary is used on the Archive pages to return the first block of content from a post.
def summary ( input )
if input . index ( / \ n \ n / )
input . split ( / \ n \ n / ) [ 0 ]
2011-04-18 03:49:30 +00:00
else
input
end
end
2011-06-27 19:59:21 +00:00
2011-07-27 03:37:31 +00:00
# for Github style codeblocks eg.
# ``` ruby
# code snippet
# ```
def backtick_codeblock ( input )
2011-07-28 18:44:18 +00:00
# Markdown support
2011-07-28 19:59:27 +00:00
input = input . gsub / <p>`{3} \ s*( \ w+)?< \/ p> \ s*<pre><code> \ s*(.+?) \ s*< \/ code>< \/ pre> \ s*<p>`{3}< \/ p> /m do
2011-07-27 03:37:31 +00:00
lang = $1
2011-07-28 19:59:27 +00:00
if lang != ''
2011-08-01 13:06:37 +00:00
str = $2 . gsub ( '<' , '<' ) . gsub ( '>' , '>' ) . gsub ( '&' , '&' )
2011-07-28 19:59:27 +00:00
highlight ( str , lang )
else
" <pre><code> #{ $2 } </code></pre> "
end
2011-07-27 03:37:31 +00:00
end
2011-07-28 18:44:18 +00:00
2011-08-01 13:06:37 +00:00
# Textile warning
2011-07-28 19:59:27 +00:00
input = input . gsub / <p>`{3} \ s*( \ w+)?<br \ s* \/ > \ n(.+?)`{3}< \/ p> /m do
2011-07-28 18:44:18 +00:00
lang = $1
2011-08-01 13:06:37 +00:00
" <pre><code>Back tick code blocks are not supported for Textile. \n Try HTML or Markdown instead or use the codeblock tag. \n \n {% codeblock #{ lang } %} \n Your code snippet \n {% endcodeblock %}</code></pre> "
2011-07-28 18:44:18 +00:00
end
2011-07-28 19:21:34 +00:00
# Regular HTML support
2011-07-28 19:59:27 +00:00
input . gsub / ^`{3} \ s*( \ w+)? \ n(.+?) \ n`{3} /m do
2011-07-28 18:44:18 +00:00
lang = $1
str = $2 . gsub ( / ^ \ s{4} / , '' )
2011-07-28 19:59:27 +00:00
if lang != ''
highlight ( str , lang )
else
" <pre><code> #{ $2 . gsub ( '<' , '<' ) . gsub ( '>' , '>' ) } </code></pre> "
end
2011-07-28 18:44:18 +00:00
end
2011-07-27 03:37:31 +00:00
end
2011-06-27 19:59:21 +00:00
# Replaces relative urls with full urls
2011-07-22 03:50:32 +00:00
def expand_urls ( input , url = '' )
url || = '/'
2011-04-18 03:49:30 +00:00
input . gsub / ( \ s+(href|src) \ s*= \ s*["|']{1})( \/ [^ \ "'>]+) / do
$1 + url + $3
end
end
2011-06-27 19:59:21 +00:00
2011-07-22 03:50:32 +00:00
# Removes trailing forward slash from a string for easily appending url segments
def strip_slash ( input )
if input =~ / (.+) \/ $|^ \/ $ /
input = $1
end
input
end
# Returns a url without the protocol (http://)
def shorthand_url ( input )
2011-06-27 19:59:21 +00:00
input . gsub / (https?: \/ \/ )( \ S+) / do
2011-05-15 22:33:00 +00:00
$2
end
end
2011-06-27 19:59:21 +00:00
# replaces primes with smartquotes using RubyPants
2011-04-18 03:49:30 +00:00
def smart_quotes ( input )
require 'rubypants'
RubyPants . new ( input ) . to_html
end
2011-06-27 19:59:21 +00:00
# Returns a title cased string based on John Gruber's title case http://daringfireball.net/2008/08/title_case_update
2011-04-18 03:49:30 +00:00
def titlecase ( input )
input . titlecase
end
2011-06-27 19:59:21 +00:00
# Returns a datetime if the input is a string
2011-05-15 22:33:00 +00:00
def datetime ( date )
2011-04-18 03:49:30 +00:00
if date . class == String
date = Time . parse ( date )
end
2011-05-15 22:33:00 +00:00
date
end
2011-06-27 19:59:21 +00:00
# Returns an ordidinal date eg July 22 2007 -> July 22nd 2007
2011-05-15 22:33:00 +00:00
def ordinalize ( date )
date = datetime ( date )
2011-06-19 19:14:01 +00:00
" #{ date . strftime ( '%b' ) } #{ ordinal ( date . strftime ( '%e' ) . to_i ) } , #{ date . strftime ( '%Y' ) } "
2011-04-18 03:49:30 +00:00
end
2011-06-27 19:59:21 +00:00
# Returns an ordinal number. 13 -> 13th, 21 -> 21st etc.
2011-04-18 03:49:30 +00:00
def ordinal ( number )
if ( 11 .. 13 ) . include? ( number . to_i % 100 )
" #{ number } <span>th</span> "
else
case number . to_i % 10
when 1 ; " #{ number } <span>st</span> "
2011-06-24 21:17:35 +00:00
when 2 ; " #{ number } <span>nd</span> "
2011-04-18 03:49:30 +00:00
when 3 ; " #{ number } <span>rd</span> "
else " #{ number } <span>th</span> "
end
end
end
end
Liquid :: Template . register_filter OctopressFilters
2011-07-27 03:56:14 +00:00