diff options
author | Nathan Youngman <git@nathany.com> | 2012-10-27 14:22:18 -0600 |
---|---|---|
committer | Nathan Youngman <git@nathany.com> | 2012-10-27 14:22:18 -0600 |
commit | 3a97b804e0c0df0693e34fb23fd16a65757636ef (patch) | |
tree | 25387d06433fd8121666f4f88b937d2c1d0079f7 /lib/coderay/encoders | |
parent | 3effca8291ed4941f7b3a1c2088b50274f28aa6f (diff) | |
download | coderay-latex-encoder.tar.gz |
Latex encoder from Redminelatex-encoder
Diffstat (limited to 'lib/coderay/encoders')
-rw-r--r-- | lib/coderay/encoders/latex.demiurgo.rb | 79 | ||||
-rw-r--r-- | lib/coderay/encoders/latex.rb | 44 |
2 files changed, 123 insertions, 0 deletions
diff --git a/lib/coderay/encoders/latex.demiurgo.rb b/lib/coderay/encoders/latex.demiurgo.rb new file mode 100644 index 0000000..0a54872 --- /dev/null +++ b/lib/coderay/encoders/latex.demiurgo.rb @@ -0,0 +1,79 @@ +module CodeRay +module Encoders + + # = LaTeX Encoder + # + # Encoder producing LaTeX. + class Latex < Encoder + + include Streamable + register_for :latex + + FILE_EXTENSION = 'tex' + + DEFAULT_OPTIONS = { + :wrap => true, + } + + protected + def text_token text, kind + @out << + if kind == :space + text + else + text = escape_latex(text) + "\\syn#{kind_to_command(kind)}{#{text}}" + end + end + + def block_token action, kind + @out << super + end + + def open_token kind + "\\syn#{kind_to_command(kind)}{" + end + + def close_token kind + "}" + end + + def kind_to_command kind + kind.to_s.gsub(/[^a-z0-9]/i, '').to_sym + end + + def finish options + case options[:wrap] + when true, 1, :semiverbatim + @out = "\\begin{semiverbatim}\n#{@out}\n\\end{semiverbatim}\n" + when false, 0 + # Nothing to do + else + raise ArgumentError, "Unknown :wrap option: '#{options[:wrap]}'" + end + + super + end + + # Escape text so it's interpreted literally by LaTeX compilers + def escape_latex string + string.to_s.gsub(/[$\\{}_%#&~^"]/) do |s| + case s + when '$' + '\$' + when '\\' + '\synbs{}' + when /[{}_%#&]/ + "\\#{s}" + when /[~^]/ + "\\#{s}{}" + when '"' + '"{}' + end + end + end + + end + +end +end diff --git a/lib/coderay/encoders/latex.rb b/lib/coderay/encoders/latex.rb new file mode 100644 index 0000000..5a6e309 --- /dev/null +++ b/lib/coderay/encoders/latex.rb @@ -0,0 +1,44 @@ +module CodeRay +module Encoders + + class Latex < Encoder + + include Streamable + register_for :latex + + FILE_EXTENSION = 'tex' + + ALLTT_ESCAPE = { #:nodoc: + '{' => '\lb', + '}' => '\rb', + '\\' => '\bs', + } + + HTML_ESCAPE_PATTERN = /[\\{}]/ + + protected + + def text_token text, kind + if text =~ /#{HTML_ESCAPE_PATTERN}/o + text = text.gsub(/#{HTML_ESCAPE_PATTERN}/o) { |m| @HTML_ESCAPE[m] } + end + k = Tokens::ClassOfKind[kind] + if k == :NO_HIGHLIGHT + text + else + "\\CR#{k}{#{text}}" + end + end + + def open_token kind + "\\CR#{Tokens::ClassOfKind[kind]}{" + end + + def close_token kind + "}" + end + + end + +end +end |