module PFM

Public Class Methods

process(string, options={}) click to toggle source
# File lib/pfm.rb, line 4
def self.process(string, options={})
  lines = string.split("\n")
  out = FootnoteProcessor.new.process(lines)
  out = CodeBlockInclude.new.process(out)

  processed = out.join("\n")
end