Sha256: d0b223c55867d3569509d0805dc0af379b8089ca99cd00d89695bf589f5c0ca1
Contents?: true
Size: 876 Bytes
Versions: 2
Compression:
Stored size: 876 Bytes
Contents
require "redcarpet" module Lookbook class Markdown DEFAULT_OPTIONS = { tables: true, fenced_code_blocks: true, disable_indented_code_blocks: true, strikethrough: true, highlight: true, with_toc_data: true, lax_spacing: true } def self.render(text) Utils.strip_action_view_annotations!(text) markdown = Redcarpet::Markdown.new(Renderer, Lookbook.config.markdown_options) markdown.render(text).html_safe end class Renderer < Redcarpet::Render::HTML def block_code(code, language = "ruby") line_numbers = language.to_s.end_with? "-numbered" ApplicationController.render(Lookbook::Code::Component.new(**{ source: code, language: language.to_s.chomp("-numbered"), line_numbers: line_numbers }), layout: nil) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lookbook-1.1.1 | lib/lookbook/markdown.rb |
lookbook-1.1.0 | lib/lookbook/markdown.rb |