mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
e16844af29
1. Removed lots of duplication 2. Added warnings and fixed some dim regex 3. New: set a start line number for any code snippet 4. New: set a start, end, or range for include_code 5. New: added option to disable line numbers linenos:false Fixes #478 #484
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
require './plugins/pygments_code'
|
|
|
|
module BacktickCodeBlock
|
|
include HighlightCode
|
|
AllOptions = /([^\s]+)\s+(.+?)(https?:\/\/\S+)\s*(.+)?/i
|
|
LangCaption = /([^\s]+)\s*(.+)?/i
|
|
def render_code_block(input)
|
|
input.encode!("UTF-8")
|
|
input.gsub /^`{3}(.+?)`{3}/m do
|
|
str = $1.to_s
|
|
linenos = true
|
|
start = 1
|
|
str.gsub /([^\n]+)?\n(.+?)\Z/m do
|
|
@options = $1 || ''
|
|
code = $2.to_s
|
|
if @options =~ /\s*linenos:false/i
|
|
linenos = false
|
|
@options = @options.sub(/\s*linenos:false/i,'')
|
|
end
|
|
if @options =~ /\s*start:(\d+)/i
|
|
start = $1.to_i
|
|
@options = @options.sub(/\s*start:\d+/i,'')
|
|
end
|
|
if @options =~ AllOptions
|
|
highlight(code, $1, {caption: $2, url: $3, anchor: $4 || 'Link', linenos: linenos, start: start})
|
|
elsif @options =~ LangCaption
|
|
highlight(code, $1, {caption: $2 || '', linenos: linenos, start: start})
|
|
else
|
|
highlight(code, 'plain', {linenos: linenos, start: start})
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|