2009-09-15から1日間の記事一覧

prawn:Prawn::Document::Internals#page_xobjects

#!/usr/bin/env ruby require "prawn" pdf = Prawn::Document.new p pdf.page_xobjects で、 {}

Manual:Line-Aware Parsing and the Offside Rule:Lines and Continuations

まんま >>> from lepl import * >>> words = Token(Word(Lower()))[:] > list >>> line = Line(words) >>> parser = line.string_parser(LineAwareConfiguration(tabsize=4)) >>> parser('\tabc def') [['abc', 'def']] >>> words = Token(Word(Lower()))[:]…