File: mixins.rb

package info (click to toggle)
ruby-jekyll-asciidoc 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,536 kB
  • sloc: ruby: 1,802; sh: 36; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Jekyll
  module AsciiDoc
    Configured = ::Module.new
    Document = ::Module.new

    module Liquidable
      def to_liquid
        self
      end
    end

    module NoLiquid
      def render_with_liquid?
        false
      end
    end
  end
end