2010-03-09 01:09:18 +00:00
|
|
|
# **Rocco** is a Ruby port of [Docco][do], the quick-and-dirty,
|
|
|
|
# hundred-line-long, literate-programming-style documentation generator.
|
2010-03-08 17:56:18 +00:00
|
|
|
#
|
2010-03-09 01:09:18 +00:00
|
|
|
# Rocco reads Ruby source files and produces annotated source documentation
|
|
|
|
# in HTML format. Comments are formatted with [Markdown][md] and presented
|
|
|
|
# alongside syntax highlighted code so as to give an annotation effect.
|
2010-03-11 14:22:20 +00:00
|
|
|
# This page is the result of running Rocco against [its own source file][so].
|
2010-03-09 01:09:18 +00:00
|
|
|
#
|
|
|
|
# Most of this was written while waiting for [node.js][no] to build (so I
|
|
|
|
# could use Docco!). Docco's gorgeous HTML and CSS are taken verbatim.
|
|
|
|
# The main difference is that Rocco is written in Ruby instead of
|
|
|
|
# [CoffeeScript][co] and may be a bit easier to obtain and install in
|
|
|
|
# existing Ruby environments or where node doesn't run yet.
|
|
|
|
#
|
2010-03-11 14:22:20 +00:00
|
|
|
# Install Rocco with Rubygems:
|
2010-03-09 01:09:18 +00:00
|
|
|
#
|
|
|
|
# gem install rocco
|
|
|
|
#
|
|
|
|
# Once installed, the `rocco` command can be used to generate documentation
|
|
|
|
# for a set of Ruby source files:
|
|
|
|
#
|
|
|
|
# rocco lib/*.rb
|
|
|
|
#
|
|
|
|
# The HTML files are written to the current working directory.
|
|
|
|
#
|
|
|
|
# [no]: http://nodejs.org/
|
|
|
|
# [do]: http://jashkenas.github.com/docco/
|
|
|
|
# [co]: http://coffeescript.org/
|
|
|
|
# [md]: http://daringfireball.net/projects/markdown/
|
2010-03-11 14:22:20 +00:00
|
|
|
# [so]: http://github.com/rtomayko/rocco/blob/master/lib/rocco.rb#commit
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-09 01:09:18 +00:00
|
|
|
#### Prerequisites
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-09 16:56:01 +00:00
|
|
|
# We'll need a Markdown library. [RDiscount][rd], if we're lucky. Otherwise,
|
|
|
|
# issue a warning and fall back on using BlueCloth.
|
|
|
|
#
|
|
|
|
# [rd]: http://github.com/rtomayko/rdiscount
|
|
|
|
begin
|
|
|
|
require 'rdiscount'
|
|
|
|
rescue LoadError => boom
|
2010-03-30 19:07:30 +00:00
|
|
|
warn "WARNING: #{boom}. Trying bluecloth."
|
2010-03-09 16:56:01 +00:00
|
|
|
require 'bluecloth'
|
|
|
|
Markdown = BlueCloth
|
|
|
|
end
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-09 01:30:40 +00:00
|
|
|
# We use [{{ mustache }}](http://defunkt.github.com/mustache/) for
|
2010-03-09 17:15:50 +00:00
|
|
|
# HTML templating.
|
2010-03-09 01:30:40 +00:00
|
|
|
require 'mustache'
|
|
|
|
|
2010-03-19 22:53:51 +00:00
|
|
|
# We use `Net::HTTP` to highlight code via <http://pygments.appspot.com>
|
|
|
|
require 'net/http'
|
2010-03-09 01:30:40 +00:00
|
|
|
|
2010-03-30 18:57:45 +00:00
|
|
|
# Code is run through [Pygments](http://pygments.org/) for syntax
|
|
|
|
# highlighting. If it's not installed, locally, use a webservice.
|
2010-04-02 22:59:52 +00:00
|
|
|
include FileTest
|
|
|
|
if !ENV['PATH'].split(':').any? { |dir| executable?("#{dir}/pygmentize") }
|
2010-03-30 19:07:30 +00:00
|
|
|
warn "WARNING: Pygments not found. Using webservice."
|
|
|
|
end
|
2010-03-30 18:57:45 +00:00
|
|
|
|
2010-03-09 01:09:18 +00:00
|
|
|
#### Public Interface
|
|
|
|
|
2010-03-11 16:01:46 +00:00
|
|
|
# `Rocco.new` takes a source `filename`, an optional list of source filenames
|
2010-03-16 09:17:17 +00:00
|
|
|
# for other documentation sources, an `options` hash, and an optional `block`.
|
2010-10-20 12:34:09 +00:00
|
|
|
# The `options` hash respects three members:
|
|
|
|
#
|
2011-03-05 12:48:29 +00:00
|
|
|
# * `:language`: specifies which Pygments lexer to use if one can't be
|
|
|
|
# auto-detected from the filename. _Defaults to `ruby`_.
|
2011-03-05 12:32:34 +00:00
|
|
|
#
|
2011-03-05 12:48:29 +00:00
|
|
|
# * `:comment_chars`, which specifies the comment characters of the
|
|
|
|
# target language. _Defaults to `#`_.
|
2010-10-20 12:34:09 +00:00
|
|
|
#
|
2011-03-05 12:48:29 +00:00
|
|
|
# * `:template_file`, which specifies a external template file to use
|
|
|
|
# when rendering the final, highlighted file via Mustache. _Defaults
|
|
|
|
# to `nil` (that is, Mustache will use `./lib/rocco/layout.mustache`)_.
|
2010-10-20 12:34:09 +00:00
|
|
|
#
|
2010-03-08 17:56:18 +00:00
|
|
|
class Rocco
|
2011-03-05 12:48:29 +00:00
|
|
|
VERSION = '0.6'
|
2010-03-09 01:45:52 +00:00
|
|
|
|
2010-03-16 09:17:17 +00:00
|
|
|
def initialize(filename, sources=[], options={}, &block)
|
2010-10-20 15:07:14 +00:00
|
|
|
@file = filename
|
|
|
|
@sources = sources
|
|
|
|
|
|
|
|
# When `block` is given, it must read the contents of the file using
|
|
|
|
# whatever means necessary and return it as a string. With no `block`,
|
|
|
|
# the file is read to retrieve data.
|
2010-03-08 17:56:18 +00:00
|
|
|
@data =
|
|
|
|
if block_given?
|
|
|
|
yield
|
|
|
|
else
|
|
|
|
File.read(filename)
|
|
|
|
end
|
2011-03-05 12:32:34 +00:00
|
|
|
|
2010-03-19 22:53:51 +00:00
|
|
|
defaults = {
|
|
|
|
:language => 'ruby',
|
|
|
|
:comment_chars => '#',
|
2010-10-17 10:25:35 +00:00
|
|
|
:template_file => nil
|
2010-03-19 22:53:51 +00:00
|
|
|
}
|
2010-03-16 09:17:17 +00:00
|
|
|
@options = defaults.merge(options)
|
2010-10-20 12:34:09 +00:00
|
|
|
|
2010-10-20 15:07:14 +00:00
|
|
|
# If we detect a language
|
|
|
|
if detect_language() != "text"
|
2010-10-21 12:22:00 +00:00
|
|
|
# then assign the detected language to `:language`, and look for
|
|
|
|
# comment characters based on that language
|
2011-03-05 12:32:34 +00:00
|
|
|
@options[:language] = detect_language()
|
|
|
|
@options[:comment_chars] = generate_comment_chars()
|
2010-10-21 12:22:00 +00:00
|
|
|
|
2010-10-20 15:07:14 +00:00
|
|
|
# If we didn't detect a language, but the user provided one, use it
|
|
|
|
# to look around for comment characters to override the default.
|
|
|
|
elsif @options[:language] != defaults[:language]
|
2011-03-05 12:32:34 +00:00
|
|
|
@options[:comment_chars] = generate_comment_chars()
|
2010-11-21 15:53:22 +00:00
|
|
|
|
|
|
|
# If neither is true, then convert the default comment character string
|
|
|
|
# into the comment_char syntax (we'll discuss that syntax in detail when
|
|
|
|
# we get to `generate_comment_chars()` in a moment.
|
|
|
|
else
|
2011-03-05 12:32:34 +00:00
|
|
|
@options[:comment_chars] = {
|
|
|
|
:single => @options[:comment_chars],
|
|
|
|
:multi => nil
|
|
|
|
}
|
2010-10-20 15:07:14 +00:00
|
|
|
end
|
2010-10-21 12:22:00 +00:00
|
|
|
|
2011-03-05 12:32:34 +00:00
|
|
|
# Turn `:comment_chars` into a regex matching a series of spaces, the
|
2010-10-21 12:22:00 +00:00
|
|
|
# `:comment_chars` string, and the an optional space. We'll use that
|
|
|
|
# to detect single-line comments.
|
2011-03-05 12:32:34 +00:00
|
|
|
@comment_pattern =
|
|
|
|
Regexp.new("^\\s*#{@options[:comment_chars][:single]}\s?")
|
2010-10-20 15:07:14 +00:00
|
|
|
|
2011-03-05 12:32:34 +00:00
|
|
|
# `parse()` the file contents stored in `@data`. Run the result through
|
|
|
|
# `split()` and that result through `highlight()` to generate the final
|
|
|
|
# section list.
|
2010-03-09 17:15:50 +00:00
|
|
|
@sections = highlight(split(parse(@data)))
|
2010-03-08 17:56:18 +00:00
|
|
|
end
|
|
|
|
|
2010-10-21 12:22:00 +00:00
|
|
|
# The filename as given to `Rocco.new`.
|
|
|
|
attr_reader :file
|
|
|
|
|
|
|
|
# The merged options array
|
|
|
|
attr_reader :options
|
|
|
|
|
|
|
|
# A list of two-tuples representing each *section* of the source file. Each
|
|
|
|
# item in the list has the form: `[docs_html, code_html]`, where both
|
|
|
|
# elements are strings containing the documentation and source code HTML,
|
|
|
|
# respectively.
|
|
|
|
attr_reader :sections
|
|
|
|
|
|
|
|
# A list of all source filenames included in the documentation set. Useful
|
|
|
|
# for building an index of other files.
|
|
|
|
attr_reader :sources
|
|
|
|
|
|
|
|
# Generate HTML output for the entire document.
|
|
|
|
require 'rocco/layout'
|
|
|
|
def to_html
|
|
|
|
Rocco::Layout.new(self, @options[:template_file]).render
|
|
|
|
end
|
|
|
|
|
|
|
|
# Helper Functions
|
|
|
|
# ----------------
|
|
|
|
|
2010-10-20 12:34:09 +00:00
|
|
|
# Returns `true` if `pygmentize` is available locally, `false` otherwise.
|
|
|
|
def pygmentize?
|
2011-03-05 12:32:34 +00:00
|
|
|
@_pygmentize ||= ENV['PATH'].split(':').
|
|
|
|
any? { |dir| executable?("#{dir}/pygmentize") }
|
2010-10-20 12:34:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# If `pygmentize` is available, we can use it to autodetect a file's
|
|
|
|
# language based on its filename. Filenames without extensions, or with
|
2010-10-20 15:07:14 +00:00
|
|
|
# extensions that `pygmentize` doesn't understand will return `text`.
|
|
|
|
# We'll also return `text` if `pygmentize` isn't available.
|
|
|
|
#
|
|
|
|
# We'll memoize the result, as we'll call this a few times.
|
2010-10-20 12:34:09 +00:00
|
|
|
def detect_language
|
2011-03-05 12:32:34 +00:00
|
|
|
@_language ||=
|
|
|
|
if pygmentize?
|
|
|
|
%x[pygmentize -N #{@file}].strip!
|
|
|
|
else
|
|
|
|
"text"
|
|
|
|
end
|
2010-10-20 15:07:14 +00:00
|
|
|
end
|
|
|
|
|
2011-03-05 12:32:34 +00:00
|
|
|
# Given a file's language, we should be able to autopopulate the
|
2010-10-20 15:07:14 +00:00
|
|
|
# `comment_chars` variables for single-line comments. If we don't
|
|
|
|
# have comment characters on record for a given language, we'll
|
|
|
|
# use the user-provided `:comment_char` option (which defaults to
|
|
|
|
# `#`).
|
|
|
|
#
|
|
|
|
# Comment characters are listed as:
|
2011-03-05 12:32:34 +00:00
|
|
|
#
|
|
|
|
# { :single => "//",
|
|
|
|
# :multi_start => "/**",
|
|
|
|
# :multi_middle => "*",
|
|
|
|
# :multi_end => "*/" }
|
2010-10-20 15:07:14 +00:00
|
|
|
#
|
|
|
|
# `:single` denotes the leading character of a single-line comment.
|
|
|
|
# `:multi_start` denotes the string that should appear alone on a
|
|
|
|
# line of code to begin a block of documentation. `:multi_middle`
|
|
|
|
# denotes the leading character of block comment content, and
|
|
|
|
# `:multi_end` is the string that ought appear alone on a line to
|
|
|
|
# close a block of documentation. That is:
|
|
|
|
#
|
|
|
|
# /** [:multi][:start]
|
2011-03-05 12:32:34 +00:00
|
|
|
# * [:multi][:middle]
|
2010-10-21 12:22:00 +00:00
|
|
|
# ...
|
2011-03-05 12:32:34 +00:00
|
|
|
# * [:multi][:middle]
|
2010-10-20 15:07:14 +00:00
|
|
|
# */ [:multi][:end]
|
|
|
|
#
|
|
|
|
# If a language only has one type of comment, the missing type
|
|
|
|
# should be assigned `nil`.
|
|
|
|
#
|
|
|
|
# At the moment, we're only returning `:single`. Consider this
|
|
|
|
# groundwork for block comment parsing.
|
2011-03-05 12:32:34 +00:00
|
|
|
COMMENT_STYLES = {
|
|
|
|
"bash" => { :single => "#", :multi => nil },
|
|
|
|
"c" => {
|
|
|
|
:single => "//",
|
|
|
|
:multi => { :start => "/**", :middle => "*", :end => "*/" }
|
|
|
|
},
|
|
|
|
"coffee-script" => {
|
|
|
|
:single => "#",
|
|
|
|
:multi => { :start => "###", :middle => nil, :end => "###" }
|
|
|
|
},
|
|
|
|
"cpp" => {
|
|
|
|
:single => "//",
|
|
|
|
:multi => { :start => "/**", :middle => "*", :end => "*/" }
|
|
|
|
},
|
|
|
|
"css" => {
|
|
|
|
:single => nil,
|
|
|
|
:multi => { :start => "/**", :middle => "*", :end => "*/" }
|
|
|
|
},
|
|
|
|
"java" => {
|
|
|
|
:single => "//",
|
|
|
|
:multi => { :start => "/**", :middle => "*", :end => "*/" }
|
|
|
|
},
|
|
|
|
"js" => {
|
|
|
|
:single => "//",
|
|
|
|
:multi => { :start => "/**", :middle => "*", :end => "*/" }
|
|
|
|
},
|
|
|
|
"lua" => {
|
|
|
|
:single => "--",
|
|
|
|
:multi => nil
|
|
|
|
},
|
|
|
|
"python" => {
|
|
|
|
:single => "#",
|
|
|
|
:multi => { :start => '"""', :middle => nil, :end => '"""' }
|
|
|
|
},
|
|
|
|
"rb" => {
|
|
|
|
:single => "#",
|
|
|
|
:multi => { :start => '=begin', :middle => nil, :end => '=end' }
|
|
|
|
},
|
|
|
|
"scheme" => { :single => ";;", :multi => nil },
|
|
|
|
}
|
|
|
|
|
2010-10-20 15:07:14 +00:00
|
|
|
def generate_comment_chars
|
2011-03-05 12:32:34 +00:00
|
|
|
@_commentchar ||=
|
|
|
|
if COMMENT_STYLES[@options[:language]]
|
|
|
|
COMMENT_STYLES[@options[:language]]
|
2010-10-21 12:22:00 +00:00
|
|
|
else
|
2010-11-21 15:53:22 +00:00
|
|
|
{ :single => @options[:comment_chars], :multi => nil }
|
2010-10-21 12:22:00 +00:00
|
|
|
end
|
2010-10-20 12:34:09 +00:00
|
|
|
end
|
|
|
|
|
2010-10-21 12:22:00 +00:00
|
|
|
# Internal Parsing and Highlighting
|
|
|
|
# ---------------------------------
|
2010-03-09 01:09:18 +00:00
|
|
|
|
2010-03-09 17:15:50 +00:00
|
|
|
# Parse the raw file data into a list of two-tuples. Each tuple has the
|
|
|
|
# form `[docs, code]` where both elements are arrays containing the
|
2010-11-22 13:38:01 +00:00
|
|
|
# raw lines parsed from the input file, comment characters stripped.
|
2010-03-09 01:09:18 +00:00
|
|
|
def parse(data)
|
|
|
|
sections = []
|
|
|
|
docs, code = [], []
|
2010-03-16 09:17:17 +00:00
|
|
|
lines = data.split("\n")
|
2010-11-22 13:38:01 +00:00
|
|
|
|
|
|
|
# The first line is ignored if it is a shebang line. We also ignore the
|
|
|
|
# PEP 263 encoding information in python sourcefiles, and the similar ruby
|
|
|
|
# 1.9 syntax.
|
2010-03-16 09:17:17 +00:00
|
|
|
lines.shift if lines[0] =~ /^\#\!/
|
2011-03-05 12:32:34 +00:00
|
|
|
lines.shift if lines[0] =~ /coding[:=]\s*[-\w.]+/ &&
|
|
|
|
[ "python", "rb" ].include?(@options[:language])
|
2010-11-22 07:25:40 +00:00
|
|
|
|
|
|
|
# To detect both block comments and single-line comments, we'll set
|
|
|
|
# up a tiny state machine, and loop through each line of the file.
|
2011-03-05 12:32:34 +00:00
|
|
|
# This requires an `in_comment_block` boolean, and a few regular
|
2010-11-22 07:25:40 +00:00
|
|
|
# expressions for line tests.
|
2011-03-05 12:32:34 +00:00
|
|
|
in_comment_block = false
|
|
|
|
single_line_comment, block_comment_start, block_comment_mid, block_comment_end =
|
|
|
|
nil, nil, nil, nil
|
2010-11-22 07:25:40 +00:00
|
|
|
if not @options[:comment_chars][:single].nil?
|
2010-11-22 07:41:54 +00:00
|
|
|
single_line_comment = Regexp.new("^\\s*#{Regexp.escape(@options[:comment_chars][:single])}\\s?")
|
2010-11-22 07:25:40 +00:00
|
|
|
end
|
|
|
|
if not @options[:comment_chars][:multi].nil?
|
2010-11-22 07:41:54 +00:00
|
|
|
block_comment_start = Regexp.new("^\\s*#{Regexp.escape(@options[:comment_chars][:multi][:start])}\\s*$")
|
|
|
|
block_comment_end = Regexp.new("^\\s*#{Regexp.escape(@options[:comment_chars][:multi][:end])}\\s*$")
|
|
|
|
if @options[:comment_chars][:multi][:middle]
|
|
|
|
block_comment_mid = Regexp.new("^\\s*#{Regexp.escape(@options[:comment_chars][:multi][:middle])}\\s?")
|
|
|
|
end
|
2010-11-22 07:25:40 +00:00
|
|
|
end
|
2010-03-16 09:17:17 +00:00
|
|
|
lines.each do |line|
|
2010-11-22 07:25:40 +00:00
|
|
|
# If we're currently in a comment block, check whether the line matches
|
|
|
|
# the _end_ of a comment block.
|
|
|
|
if in_comment_block
|
|
|
|
if block_comment_end && line.match( block_comment_end )
|
|
|
|
in_comment_block = false
|
|
|
|
else
|
2010-11-22 12:38:03 +00:00
|
|
|
docs << line.sub( block_comment_mid || '', '' )
|
2010-03-08 17:56:18 +00:00
|
|
|
end
|
2010-11-22 07:25:40 +00:00
|
|
|
# Otherwise, check whether the line matches the beginning of a block, or
|
|
|
|
# a single-line comment all on it's lonesome. In either case, if there's
|
|
|
|
# code, start a new section
|
2010-03-09 01:09:18 +00:00
|
|
|
else
|
2010-11-22 07:25:40 +00:00
|
|
|
if block_comment_start && line.match( block_comment_start )
|
|
|
|
in_comment_block = true
|
|
|
|
if code.any?
|
|
|
|
sections << [docs, code]
|
|
|
|
docs, code = [], []
|
|
|
|
end
|
|
|
|
elsif single_line_comment && line.match( single_line_comment )
|
|
|
|
if code.any?
|
|
|
|
sections << [docs, code]
|
|
|
|
docs, code = [], []
|
|
|
|
end
|
2010-11-22 12:38:03 +00:00
|
|
|
docs << line.sub( single_line_comment || '', '' )
|
2010-11-22 07:25:40 +00:00
|
|
|
else
|
|
|
|
code << line
|
|
|
|
end
|
2010-03-08 17:56:18 +00:00
|
|
|
end
|
|
|
|
end
|
2010-03-09 01:09:18 +00:00
|
|
|
sections << [docs, code] if docs.any? || code.any?
|
2010-11-22 13:38:01 +00:00
|
|
|
normalize_leading_spaces( sections )
|
|
|
|
end
|
|
|
|
|
|
|
|
# Normalizes documentation whitespace by checking for leading whitespace,
|
|
|
|
# removing it, and then removing the same amount of whitespace from each
|
|
|
|
# succeeding line. That is:
|
|
|
|
#
|
|
|
|
# def func():
|
|
|
|
# """
|
|
|
|
# Comment 1
|
|
|
|
# Comment 2
|
|
|
|
# """
|
|
|
|
# print "omg!"
|
|
|
|
#
|
|
|
|
# should yield a comment block of `Comment 1\nComment 2` and code of
|
|
|
|
# `def func():\n print "omg!"`
|
|
|
|
def normalize_leading_spaces( sections )
|
|
|
|
sections.map do |section|
|
2010-11-22 14:00:36 +00:00
|
|
|
if section.any? && section[0].any?
|
2010-11-22 13:38:01 +00:00
|
|
|
leading_space = section[0][0].match( "^\s+" )
|
|
|
|
if leading_space
|
2011-03-05 12:32:34 +00:00
|
|
|
section[0] =
|
|
|
|
section[0].map{ |line| line.sub( /^#{leading_space.to_s}/, '' ) }
|
2010-11-22 13:38:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
section
|
|
|
|
end
|
2010-03-09 01:09:18 +00:00
|
|
|
end
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-09 17:15:50 +00:00
|
|
|
# Take the list of paired *sections* two-tuples and split into two
|
|
|
|
# separate lists: one holding the comments with leaders removed and
|
|
|
|
# one with the code blocks.
|
|
|
|
def split(sections)
|
2010-03-09 01:09:18 +00:00
|
|
|
docs_blocks, code_blocks = [], []
|
|
|
|
sections.each do |docs,code|
|
2010-11-22 07:41:54 +00:00
|
|
|
docs_blocks << docs.join("\n")
|
2010-03-17 02:58:29 +00:00
|
|
|
code_blocks << code.map do |line|
|
|
|
|
tabs = line.match(/^(\t+)/)
|
2010-03-19 19:05:25 +00:00
|
|
|
tabs ? line.sub(/^\t+/, ' ' * tabs.captures[0].length) : line
|
2010-03-17 02:58:29 +00:00
|
|
|
end.join("\n")
|
2010-03-09 01:09:18 +00:00
|
|
|
end
|
2010-03-09 17:15:50 +00:00
|
|
|
[docs_blocks, code_blocks]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Take the result of `split` and apply Markdown formatting to comments and
|
|
|
|
# syntax highlighting to source code.
|
|
|
|
def highlight(blocks)
|
|
|
|
docs_blocks, code_blocks = blocks
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-09 17:15:50 +00:00
|
|
|
# Combine all docs blocks into a single big markdown document with section
|
|
|
|
# dividers and run through the Markdown processor. Then split it back out
|
|
|
|
# into separate sections.
|
2010-03-09 16:55:17 +00:00
|
|
|
markdown = docs_blocks.join("\n\n##### DIVIDER\n\n")
|
2010-03-09 01:09:18 +00:00
|
|
|
docs_html = Markdown.new(markdown, :smart).
|
|
|
|
to_html.
|
2010-03-09 16:55:17 +00:00
|
|
|
split(/\n*<h5>DIVIDER<\/h5>\n*/m)
|
2010-03-09 01:09:18 +00:00
|
|
|
|
2010-11-25 15:08:31 +00:00
|
|
|
# Combine all code blocks into a single big stream with section dividers and
|
|
|
|
# run through either `pygmentize(1)` or <http://pygments.appspot.com>
|
2011-03-05 12:32:34 +00:00
|
|
|
span, espan = '<span class="c.?">', '</span>'
|
|
|
|
if @options[:comment_chars][:single]
|
|
|
|
front = @options[:comment_chars][:single]
|
|
|
|
divider_input = "\n\n#{front} DIVIDER\n\n"
|
|
|
|
divider_output = Regexp.new(
|
|
|
|
[ "\\n*",
|
|
|
|
span,
|
|
|
|
Regexp.escape(front),
|
|
|
|
' DIVIDER',
|
|
|
|
espan,
|
|
|
|
"\\n*"
|
|
|
|
].join, Regexp::MULTILINE
|
|
|
|
)
|
2010-11-25 15:08:31 +00:00
|
|
|
else
|
2011-03-05 12:32:34 +00:00
|
|
|
front = @options[:comment_chars][:multi][:start]
|
|
|
|
back = @options[:comment_chars][:multi][:end]
|
|
|
|
divider_input = "\n\n#{front}\nDIVIDER\n#{back}\n\n"
|
|
|
|
divider_output = Regexp.new(
|
|
|
|
[ "\\n*",
|
|
|
|
span, Regexp.escape(front), espan,
|
|
|
|
"\\n",
|
|
|
|
span, "DIVIDER", espan,
|
|
|
|
"\\n",
|
|
|
|
span, Regexp.escape(back), espan,
|
|
|
|
"\\n*"
|
|
|
|
].join, Regexp::MULTILINE
|
|
|
|
)
|
2010-11-25 15:08:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
code_stream = code_blocks.join( divider_input )
|
2010-03-19 22:53:51 +00:00
|
|
|
|
2011-03-05 12:32:34 +00:00
|
|
|
code_html =
|
|
|
|
if pygmentize?
|
|
|
|
highlight_pygmentize(code_stream)
|
|
|
|
else
|
|
|
|
highlight_webservice(code_stream)
|
|
|
|
end
|
2010-03-19 22:53:51 +00:00
|
|
|
|
|
|
|
# Do some post-processing on the pygments output to split things back
|
|
|
|
# into sections and remove partial `<pre>` blocks.
|
|
|
|
code_html = code_html.
|
2010-11-25 15:08:31 +00:00
|
|
|
split(divider_output).
|
2010-03-19 22:53:51 +00:00
|
|
|
map { |code| code.sub(/\n?<div class="highlight"><pre>/m, '') }.
|
|
|
|
map { |code| code.sub(/\n?<\/pre><\/div>\n/m, '') }
|
|
|
|
|
|
|
|
# Lastly, combine the docs and code lists back into a list of two-tuples.
|
|
|
|
docs_html.zip(code_html)
|
|
|
|
end
|
|
|
|
|
|
|
|
# We `popen` a read/write pygmentize process in the parent and
|
|
|
|
# then fork off a child process to write the input.
|
|
|
|
def highlight_pygmentize(code)
|
2010-03-09 01:09:18 +00:00
|
|
|
code_html = nil
|
2010-10-19 11:32:03 +00:00
|
|
|
open("|pygmentize -l #{@options[:language]} -O encoding=utf-8 -f html", 'r+') do |fd|
|
2010-03-09 17:16:53 +00:00
|
|
|
pid =
|
|
|
|
fork {
|
|
|
|
fd.close_read
|
2010-03-19 22:53:51 +00:00
|
|
|
fd.write code
|
2010-03-09 17:16:53 +00:00
|
|
|
fd.close_write
|
|
|
|
exit!
|
|
|
|
}
|
2010-03-09 01:09:18 +00:00
|
|
|
fd.close_write
|
|
|
|
code_html = fd.read
|
|
|
|
fd.close_read
|
2010-03-09 17:16:53 +00:00
|
|
|
Process.wait(pid)
|
2010-03-08 23:21:28 +00:00
|
|
|
end
|
2010-03-08 17:56:18 +00:00
|
|
|
|
2010-03-19 22:53:51 +00:00
|
|
|
code_html
|
|
|
|
end
|
2011-03-05 12:32:34 +00:00
|
|
|
|
2010-03-30 18:46:24 +00:00
|
|
|
# Pygments is not one of those things that's trivial for a ruby user to install,
|
|
|
|
# so we'll fall back on a webservice to highlight the code if it isn't available.
|
2010-03-19 22:53:51 +00:00
|
|
|
def highlight_webservice(code)
|
|
|
|
Net::HTTP.post_form(
|
|
|
|
URI.parse('http://pygments.appspot.com/'),
|
2010-10-20 12:27:03 +00:00
|
|
|
{'lang' => @options[:language], 'code' => code}
|
2010-03-19 22:53:51 +00:00
|
|
|
).body
|
2010-03-08 17:56:18 +00:00
|
|
|
end
|
|
|
|
end
|
2010-03-10 12:07:21 +00:00
|
|
|
|
|
|
|
# And that's it.
|