Sha256: 42fd9d8e03799e7d1e88b3ffc6497d311330542b86c926151fe32f2cfeac414c
Contents?: true
Size: 343 Bytes
Versions: 8
Compression:
Stored size: 343 Bytes
Contents
module MarkdownTags include Radiant::Taggable desc %{ Filters its contents with the Markdown filter. *Usage:* <pre><code><r:markdown>** bold text **</r:markdown></code></pre> produces <pre><code><strong> bold text </strong></code></pre> } tag 'markdown' do |tag| MarkdownFilter.filter(tag.expand) end end
Version data entries
8 entries across 8 versions & 3 rubygems