module Parchment::TXT

Parchment plain text format parser

Public Class Methods

read(path) click to toggle source
# File lib/parchment/formats/txt/txt.rb, line 9
def self.read(path)
  Parchment::TXT::Document.new(File.read(path))
end