mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 04:08:40 +00:00
12 lines
385 B
Ruby
12 lines
385 B
Ruby
module Multilang
|
|
def block_code(code, full_lang_name)
|
|
parts = full_lang_name.split('--')
|
|
rouge_lang_name = parts[0] || ""
|
|
super(code, rouge_lang_name).sub("highlight #{rouge_lang_name}") do |match|
|
|
match + " tab-" + full_lang_name
|
|
end
|
|
end
|
|
end
|
|
|
|
require 'middleman-core/renderers/redcarpet'
|
|
Middleman::Renderers::MiddlemanRedcarpetHTML.send :include, Multilang
|