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

prawn:Prawn::Document::Internals#page_resources

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

Manual:Line-Aware Parsing and the Offside Rule:Indent and Eol Tokens

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