Module: MaRuKu::Out::HTML
- Includes:
- REXML
- Included in:
- MDElement
- Defined in:
- lib/maruku.rb,
lib/maruku/ext/div.rb,
lib/maruku/output/to_html.rb,
lib/maruku/ext/math/to_html.rb,
lib/maruku/ext/math/mathml_engines/none.rb,
lib/maruku/ext/math/mathml_engines/ritex.rb,
lib/maruku/ext/math/mathml_engines/blahtex.rb,
lib/maruku/ext/math/mathml_engines/itex2mml.rb
Defined Under Namespace
Classes: PNG
Constant Summary collapse
- Xhtml10strict =
"<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>\n"- Xhtml11strict_mathml2 =
'<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd" [ <!ENTITY mathml "http://www.w3.org/1998/Math/MathML"> ]> '- Xhtml11_mathml2_svg11 =
'<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"> '- METAS =
Attribute: css Scope: document Output: HTML Summary: Activates CSS stylesheets for HTML.
‘css` should be a space-separated list of urls.
Example:
CSS: style.css math.css
%w{description keywords author revised}
- HTML4Attributes =
{}
Instance Method Summary collapse
- #add_class_to(el, cl) ⇒ Object
- #add_class_to_link(a) ⇒ Object
- #add_css_to(head) ⇒ Object
- #add_ws(e) ⇒ Object
- #adjust_png(png, use_depth) ⇒ Object
- #array_to_html(array) ⇒ Object
-
#children_to_html ⇒ Object
Convert each child to html.
- #convert_to_mathml_blahtex(kind, tex) ⇒ Object
- #convert_to_mathml_itex2mml(kind, tex) ⇒ Object
- #convert_to_mathml_none(kind, tex) ⇒ Object
- #convert_to_mathml_ritex(kind, tex) ⇒ Object
- #convert_to_png_blahtex(kind, tex) ⇒ Object
- #convert_to_png_none(kind, tex) ⇒ Object
- #create_html_element(name, attributes_to_copy = []) ⇒ Object
-
#day_suffix(day) ⇒ Object
returns “st”,“nd”,“rd” or “th” as appropriate.
- #maruku_html_signature ⇒ Object
-
#nice_date ⇒ Object
formats a nice date.
-
#obfuscate(s) ⇒ Object
Email address.
- #pixels_per_ex ⇒ Object
- #render_footnotes ⇒ Object
-
#render_mathjax(kind, tex) ⇒ REXML::Document
Renders a MathJax block of out this node’s TeX code.
-
#render_mathml(kind, tex) ⇒ REXML::Document
Creates an xml Mathml document of this node’s TeX code.
-
#render_png(kind, tex) ⇒ MaRuKu::Out::HTML::PNG?
Renders a PNG image of this node’s TeX code.
-
#render_section_number ⇒ Object
nil if not applicable, else SPAN element.
-
#section_number ⇒ Object
nil if not applicable, else string.
- #source2html(source) ⇒ Object
-
#to_html(context = {}) ⇒ Object
Render as an HTML fragment (no head, just the content of BODY).
- #to_html_abbr ⇒ Object
- #to_html_cell ⇒ Object
- #to_html_code ⇒ Object
- #to_html_code_using_pre(source) ⇒ Object
- #to_html_definition ⇒ Object
- #to_html_definition_data ⇒ Object
-
#to_html_definition_list ⇒ Object
Definition lists ###.
- #to_html_definition_term ⇒ Object
- #to_html_div ⇒ Object
- #to_html_divref ⇒ Object
-
#to_html_document(context = {}) ⇒ Object
Render to a complete HTML document (returns a string).
-
#to_html_document_tree ⇒ Object
Render to a complete HTML document (returns a REXML document tree).
- #to_html_email_address ⇒ Object
- #to_html_emphasis ⇒ Object
- #to_html_entity ⇒ Object
- #to_html_eqref ⇒ Object
- #to_html_equation ⇒ Object
- #to_html_footnote_reference ⇒ Object
- #to_html_head_cell ⇒ Object
- #to_html_header ⇒ Object
- #to_html_hrule ⇒ Object
- #to_html_im_image ⇒ Object
- #to_html_im_link ⇒ Object
-
#to_html_image ⇒ Object
Images.
- #to_html_immediate_link ⇒ Object
- #to_html_inline_code ⇒ Object
- #to_html_inline_math ⇒ Object
- #to_html_li ⇒ Object
- #to_html_li_span ⇒ Object
- #to_html_linebreak ⇒ Object
- #to_html_link ⇒ Object
- #to_html_ol ⇒ Object
- #to_html_paragraph ⇒ Object
- #to_html_quote ⇒ Object
-
#to_html_raw_html ⇒ Object
Attribute: filter_html Scope: document.
- #to_html_ref_definition ⇒ Object
- #to_html_strong ⇒ Object
-
#to_html_table ⇒ Object
FIXME: Ugly code.
-
#to_html_tree ⇒ Object
Render to an HTML fragment (returns a REXML document tree).
- #to_html_ul ⇒ Object
- #to_html_xml_instr ⇒ Object
- #to_latex_ref_definition ⇒ Object
-
#wrap_as_element(name, attributes_to_copy = []) ⇒ Object
renders children as html and wraps into an element of given name.
- #xml_newline ⇒ Object
Instance Method Details
#add_class_to(el, cl) ⇒ Object
671 672 673 674 675 676 677 678 |
# File 'lib/maruku/output/to_html.rb', line 671 def add_class_to(el, cl) el.attributes['class'] = if already = el.attributes['class'] already + " " + cl else cl end end |
#add_class_to_link(a) ⇒ Object
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 |
# File 'lib/maruku/output/to_html.rb', line 680 def add_class_to_link(a) return # not ready yet # url = a.attributes['href'] # return if not url # # if url =~ /^#/ # add_class_to(a, 'maruku-link-samedoc') # elsif url =~ /^http:/ # add_class_to(a, 'maruku-link-external') # else # add_class_to(a, 'maruku-link-local') # end # # puts a.attributes['class'] end |
#add_css_to(head) ⇒ Object
264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/maruku/output/to_html.rb', line 264 def add_css_to(head) if css_list = self.attributes[:css] css_list.split.each do |css| # <link type="text/css" rel="stylesheet" href="..." /> link = Element.new 'link' link.attributes['type'] = 'text/css' link.attributes['rel'] = 'stylesheet' link.attributes['href'] = css head << link head << xml_newline end end end |
#add_ws(e) ⇒ Object
742 743 744 |
# File 'lib/maruku/output/to_html.rb', line 742 def add_ws(e) [Text.new("\n"), e, Text.new("\n")] end |
#adjust_png(png, use_depth) ⇒ Object
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/maruku/ext/math/to_html.rb', line 112 def adjust_png(png, use_depth) src = png.src height_in_px = png.height depth_in_px = png.depth height_in_ex = height_in_px / pixels_per_ex depth_in_ex = depth_in_px / pixels_per_ex total_height_in_ex = height_in_ex + depth_in_ex style = "" style << "vertical-align: -#{depth_in_ex}ex;" if use_depth style << "height: #{total_height_in_ex}ex;" img = Element.new 'img' img.attributes['src'] = src img.attributes['style'] = style img.attributes['alt'] = "$#{self.math.strip}$" img end |
#array_to_html(array) ⇒ Object
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 |
# File 'lib/maruku/output/to_html.rb', line 962 def array_to_html(array) e = [] array.each do |c| method = c.kind_of?(MDElement) ? "to_html_#{c.node_type}" : "to_html" if not c.respond_to?(method) #raise "Object does not answer to #{method}: #{c.class} #{c.inspect}" next end h = c.send(method) if h.nil? raise "Nil html created by method #{method}:\n#{h.inspect}\n"+ " for object #{c.inspect[0,300]}" end if h.kind_of?Array e = e + h #h.each do |hh| e << hh end else e << h end end e end |
#children_to_html ⇒ Object
Convert each child to html
958 959 960 |
# File 'lib/maruku/output/to_html.rb', line 958 def children_to_html array_to_html(@children) end |
#convert_to_mathml_blahtex(kind, tex) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/maruku/ext/math/mathml_engines/blahtex.rb', line 64 def convert_to_mathml_blahtex(kind, tex) @@BlahtexCache ||= PStore.new(get_setting(:latex_cache_file)) @@BlahtexCache.transaction do if @@BlahtexCache[tex].nil? Tempfile.open('maruku_blahtex') do |tmp_in| tmp_in.write tex Tempfile.new('maruku_blahtex') do |tmp_out| system "blahtex --mathml < #{shellescape(tmp_in.path)} > #{shellescape(tmp_out.path)}" @@BlahtexCache[tex] = tmp_out.read end end end blahtex = @@BlahtexCache[tex] doc = Document.new(blahtex, :respect_whitespace => :all) unless mathml = doc.root.elements['mathml'] maruku_error "Blahtex error: \n#{doc}" return end return mathml end rescue Exception => e maruku_error "Error: #{e}" end |
#convert_to_mathml_itex2mml(kind, tex) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/maruku/ext/math/mathml_engines/itex2mml.rb', line 4 def convert_to_mathml_itex2mml(kind, tex) return if $already_warned_itex2mml begin require 'itextomml' rescue LoadError => e maruku_error "Could not load package 'itex2mml'.\nPlease install it." unless $already_warned_itex2mml $already_warned_itex2mml = true return nil end begin require 'instiki_stringsupport' rescue LoadError require 'itex_stringsupport' end parser = Itex2MML::Parser.new mathml = case kind when :equation; parser.block_filter(tex) when :inline; parser.inline_filter(tex) else maruku_error "Unknown itex2mml kind: #{kind}" return end return Document.new(mathml.to_utf8, :respect_whitespace => :all).root rescue REXML::ParseException => e maruku_error "Invalid MathML TeX: \n#{tex.gsub(/^/, 'tex>')}\n\n #{e.inspect}" nil rescue maruku_error "Could not produce MathML TeX: \n#{tex}\n\n #{e.inspect}" nil end |
#convert_to_mathml_none(kind, tex) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/maruku/ext/math/mathml_engines/none.rb', line 3 def convert_to_mathml_none(kind, tex) # You can: either return a REXML::Element # return Element.new 'div' # or return an empty array on error # return [] # or have a string parsed by REXML: mathml = "<code>#{tex.gsub( /&/, "&" ). gsub( /</, "<" ).gsub( />/, ">" ). gsub(/'/, "'" ).gsub(/"/, """ )}</code>" return Document.new(mathml).root end |
#convert_to_mathml_ritex(kind, tex) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/maruku/ext/math/mathml_engines/ritex.rb', line 3 def convert_to_mathml_ritex(kind, tex) begin if not $ritex_parser require 'ritex' $ritex_parser = Ritex::Parser.new end mathml = $ritex_parser.parse(tex.strip) doc = Document.new(mathml, {:respect_whitespace =>:all}).root return doc rescue LoadError => e maruku_error "Could not load package 'ritex'.\n"+ "Please install it using:\n"+ " $ gem install ritex\n\n"+e.inspect rescue Racc::ParseError => e maruku_error "Could not parse TeX: \n#{tex}"+ "\n\n #{e.inspect}" end nil end |
#convert_to_png_blahtex(kind, tex) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/maruku/ext/math/mathml_engines/blahtex.rb', line 11 def convert_to_png_blahtex(kind, tex) FileUtils.mkdir_p get_setting(:html_png_dir) # first, we check whether this image has already been processed md5sum = Digest::MD5.hexdigest(tex + " params: ") result_file = File.join(get_setting(:html_png_dir), md5sum + ".txt") if not File.exists?(result_file) Tempfile.open('maruku_blahtex') do |tmp_in| tmp_in.write tex tmp_in.close # It's important taht we don't replace *all* newlines, # because newlines in arguments get escaped as "'\n'". system <<COMMAND.gsub("\n ", " ") blahtex --png --use-preview-package --shell-dvipng #{shellescape("dvipng -D #{shellescape(get_setting(:html_png_resolution).to_s)}")} #{'--displaymath' if kind == :equation} --temp-directory #{shellescape(get_setting(:html_png_dir))} --png-directory #{shellescape(get_setting(:html_png_dir))} < #{shellescape(tmp_in.path)} > #{shellescape(result_file)} COMMAND end end result = File.read(result_file) if result.nil? || result.empty? maruku_error "Blahtex error: empty output" return end doc = Document.new(result, :respect_whitespace => :all) png = doc.root.elements[1] if png.name != 'png' maruku_error "Blahtex error: \n#{doc}" return end raise "No depth element in:\n #{doc}" unless depth = png.elements['depth'] raise "No height element in:\n #{doc}" unless height = png.elements['height'] raise "No md5 element in:\n #{doc}" unless md5 = png.elements['md5'] depth = depth.text.to_f height = height.text.to_f # TODO: check != 0 md5 = md5.text PNG.new("#{get_setting(:html_png_url)}#{md5}.png", depth, height) rescue Exception => e maruku_error "Error: #{e}" end |
#convert_to_png_none(kind, tex) ⇒ Object
15 16 17 |
# File 'lib/maruku/ext/math/mathml_engines/none.rb', line 15 def convert_to_png_none(kind, tex) return nil end |
#create_html_element(name, attributes_to_copy = []) ⇒ Object
427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'lib/maruku/output/to_html.rb', line 427 def create_html_element(name, attributes_to_copy=[]) m = Element.new name if atts = HTML4Attributes[name] then atts.each do |att| if v = @attributes[att] then m.attributes[att.to_s] = v.to_s end end else # puts "not atts for #{name.inspect}" end m end |
#day_suffix(day) ⇒ Object
returns “st”,“nd”,“rd” or “th” as appropriate
279 280 281 282 283 284 285 286 287 288 289 290 |
# File 'lib/maruku/output/to_html.rb', line 279 def day_suffix(day) s = { 1 => 'st', 2 => 'nd', 3 => 'rd', 21 => 'st', 22 => 'nd', 23 => 'rd', 31 => 'st' } return s[day] || 'th'; end |
#maruku_html_signature ⇒ Object
301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
# File 'lib/maruku/output/to_html.rb', line 301 def maruku_html_signature div = Element.new 'div' div.attributes['class'] = 'maruku_signature' Element.new 'hr', div span = Element.new 'span', div span.attributes['style'] = 'font-size: small; font-style: italic' span << Text.new('Created by ') a = Element.new('a', span) a.attributes['href'] = 'http://maruku.rubyforge.org' a.attributes['title'] = 'Maruku: a Markdown-superset interpreter for Ruby' a << Text.new('Maruku') span << Text.new(nice_date+".") div end |
#nice_date ⇒ Object
formats a nice date
293 294 295 296 297 298 299 |
# File 'lib/maruku/output/to_html.rb', line 293 def nice_date t = Time.now t.strftime(" at %H:%M on ")+ t.strftime("%A, %B %d")+ day_suffix(t.day)+ t.strftime(", %Y") end |
#obfuscate(s) ⇒ Object
Email address
747 748 749 750 751 752 753 |
# File 'lib/maruku/output/to_html.rb', line 747 def obfuscate(s) res = '' s.each_byte do |char| res += "&#%03d;" % char end res end |
#pixels_per_ex ⇒ Object
108 109 110 |
# File 'lib/maruku/ext/math/to_html.rb', line 108 def pixels_per_ex $pixels_per_ex ||= render_png(:inline, "x").height end |
#render_footnotes ⇒ Object
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/maruku/output/to_html.rb', line 316 def render_footnotes() div = Element.new 'div' div.attributes['class'] = 'footnotes' div << Element.new('hr') ol = Element.new 'ol' @doc.footnotes_order.each_with_index do |fid, i| num = i+1 f = self.footnotes[fid] if f li = f.wrap_as_element('li') li.attributes['id'] = "#{get_setting(:doc_prefix)}fn:#{num}" a = Element.new 'a' a.attributes['href'] = "\##{get_setting(:doc_prefix)}fnref:#{num}" a.attributes['rev'] = 'footnote' a<< Text.new('↩', true, nil, true) li.insert_after(li.children.last, a) ol << li else maruku_error "Could not find footnote id '#{fid}' among ["+ self.footnotes.keys.map{|s|"'"+s+"'"}.join(', ')+"]." end end div << ol div end |
#render_mathjax(kind, tex) ⇒ REXML::Document
Renders a MathJax block of out this node’s TeX code.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/maruku/ext/math/to_html.rb', line 78 def render_mathjax(kind,tex) if kind == :equation # using the script that works with Instapaper # see http://www.leancrew.com/all-this/2010/11/mathjax-markdown-and-instapaper/ # <span class="MathJax_Preview"><code>[math]</code></span> # <script type="math/tex; mode=display">\int f(x) = F(x)</script> equation = create_html_element 'span' span = create_html_element 'span' add_class_to(span,'MathJax_Preview') code = convert_to_mathml_none(:equation, tex.strip) span << code script = create_html_element 'script' script.attributes['type'] = 'math/tex; mode=display' script << Text.new("#{tex.strip}") equation << span equation << script return equation else script = create_html_element 'script' script.attributes['type'] = 'math/tex' script << Text.new("#{tex.strip}") return script end end |
#render_mathml(kind, tex) ⇒ REXML::Document
Creates an xml Mathml document of this node’s TeX code.
47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/maruku/ext/math/to_html.rb', line 47 def render_mathml(kind, tex) engine = get_setting(:html_math_engine) method = "convert_to_mathml_#{engine}" if self.respond_to? method mathml = self.send(method, kind, tex) return mathml || convert_to_mathml_none(kind, tex) end # TODO: Warn here puts "A method called #{method} should be defined." return convert_to_mathml_none(kind, tex) end |
#render_png(kind, tex) ⇒ MaRuKu::Out::HTML::PNG?
Renders a PNG image of this node’s TeX code. Returns
66 67 68 69 70 71 72 73 |
# File 'lib/maruku/ext/math/to_html.rb', line 66 def render_png(kind, tex) engine = get_setting(:html_png_engine) method = "convert_to_png_#{engine}".to_sym return self.send(method, kind, tex) if self.respond_to? method puts "A method called #{method} should be defined." return nil end |
#render_section_number ⇒ Object
nil if not applicable, else SPAN element
485 486 487 488 489 490 491 492 493 494 495 |
# File 'lib/maruku/output/to_html.rb', line 485 def render_section_number # if we are bound to a section, add section number if num = section_number span = Element.new 'span' span.attributes['class'] = 'maruku_section_number' span << Text.new(section_number) span else nil end end |
#section_number ⇒ Object
nil if not applicable, else string
473 474 475 476 477 478 479 480 481 482 |
# File 'lib/maruku/output/to_html.rb', line 473 def section_number return nil if not get_setting(:use_numbered_headers) n = @attributes[:section_number] if n && (not n.empty?) n.join('.')+". " else nil end end |
#source2html(source) ⇒ Object
507 508 509 510 511 512 513 |
# File 'lib/maruku/output/to_html.rb', line 507 def source2html(source) # source = source.gsub(/&/,'&') source = Text.normalize(source) source = source.gsub(/\'/,''') # IE bug source = source.gsub(/'/,''') # IE bug Text.new(source, true, nil, true ) end |
#to_html(context = {}) ⇒ Object
Render as an HTML fragment (no head, just the content of BODY). (returns a string)
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/maruku/output/to_html.rb', line 45 def to_html(context={}) indent = context[:indent] || -1 ie_hack = context[:ie_hack] || true div = Element.new 'dummy' children_to_html.each do |e| div << e end # render footnotes if @doc.footnotes_order.size > 0 div << render_footnotes end doc = Document.new(nil,{:respect_whitespace =>:all}) doc << div # REXML Bug? if indent!=-1 whitespace is not respected for 'pre' elements # containing code. xml ="" if $rexml_new_version formatter = if indent > -1 REXML::Formatters::Pretty.new( indent, ie_hack ) else REXML::Formatters::Default.new( ie_hack ) end formatter.write( div, xml) else div.write(xml,indent,transitive=true,ie_hack) end xml.gsub!(/\A<dummy>\s*/,'') xml.gsub!(/\s*<\/dummy>\Z/,'') xml.gsub!(/\A<dummy\s*\/>/,'') xml end |
#to_html_abbr ⇒ Object
840 841 842 843 844 845 |
# File 'lib/maruku/output/to_html.rb', line 840 def to_html_abbr abbr = Element.new 'abbr' abbr << Text.new(children[0]) abbr.attributes['title'] = self.title if self.title abbr end |
#to_html_cell ⇒ Object
920 921 922 923 924 925 926 |
# File 'lib/maruku/output/to_html.rb', line 920 def to_html_cell if @attributes[:scope] wrap_as_element('th', [:scope]) else wrap_as_element('td') end end |
#to_html_code ⇒ Object
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 |
# File 'lib/maruku/output/to_html.rb', line 549 def to_html_code; source = self.raw_code lang = self.attributes[:lang] || @doc.attributes[:code_lang] lang = 'xml' if lang=='html' lang = 'css21' if lang == 'css' use_syntax = get_setting :html_use_syntax element = if use_syntax && lang begin if not $syntax_loaded require 'rubygems' require 'syntax' require 'syntax/convertors/html' $syntax_loaded = true end convertor = Syntax::Convertors::HTML.for_syntax lang # eliminate trailing newlines otherwise Syntax crashes source = source.gsub(/\n*\Z/,'') html = convertor.convert( source ) html = html.gsub(/\'/,''') # IE bug html = html.gsub(/'/,''') # IE bug # html = html.gsub(/&/,'&') code = Document.new(html, {:respect_whitespace =>:all}).root code.name = 'code' code.attributes['lang'] = lang pre = Element.new 'pre' pre.attributes['class'] = lang pre << code pre rescue LoadError => e maruku_error "Could not load package 'syntax'.\n"+ "Please install it, for example using 'gem install syntax'." to_html_code_using_pre(source) rescue Object => e maruku_error"Error while using the syntax library for code:\n#{source.inspect}"+ "Lang is #{lang} object is: \n"+ self.inspect + "\nException: #{e.class}: #{e.}\n\t#{e.backtrace.join("\n\t")}" tell_user("Using normal PRE because the syntax library did not work.") to_html_code_using_pre(source) end else to_html_code_using_pre(source) end color = get_setting(:code_background_color) if color != Globals[:code_background_color] element.attributes['style'] = "background-color: #{color};" end add_ws element end |
#to_html_code_using_pre(source) ⇒ Object
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 |
# File 'lib/maruku/output/to_html.rb', line 630 def to_html_code_using_pre(source) pre = create_html_element 'pre' code = Element.new 'code', pre s = source # s = s.gsub(/&/,'&') s = Text.normalize(s) s = s.gsub(/\'/,''') # IE bug s = s.gsub(/'/,''') # IE bug if get_setting(:code_show_spaces) # 187 = raquo # 160 = nbsp # 172 = not s.gsub!(/\t/,'»'+' '*3) s.gsub!(/ /,'¬') end text = Text.new(s, respect_ws=true, parent=nil, raw=true ) if lang = self.attributes[:lang] code.attributes['lang'] = lang code.attributes['class'] = lang end code << text pre end |
#to_html_definition ⇒ Object
881 |
# File 'lib/maruku/output/to_html.rb', line 881 def to_html_definition() children_to_html end |
#to_html_definition_data ⇒ Object
883 |
# File 'lib/maruku/output/to_html.rb', line 883 def to_html_definition_data() add_ws wrap_as_element('dd') end |
#to_html_definition_list ⇒ Object
Definition lists ###
880 |
# File 'lib/maruku/output/to_html.rb', line 880 def to_html_definition_list() add_ws wrap_as_element('dl') end |
#to_html_definition_term ⇒ Object
882 |
# File 'lib/maruku/output/to_html.rb', line 882 def to_html_definition_term() add_ws wrap_as_element('dt') end |
#to_html_div ⇒ Object
116 117 118 |
# File 'lib/maruku/ext/div.rb', line 116 def to_html_div add_ws wrap_as_element('div') end |
#to_html_divref ⇒ Object
222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/maruku/ext/math/to_html.rb', line 222 def to_html_divref unless hash = self.doc.refid2ref.values.find {|h| h.has_key?(self.refid)} maruku_error "Cannot find div #{self.refid.inspect}" return Text.new("\\ref{#{self.refid}}") end ref= hash[self.refid] a = Element.new 'a' a.attributes['class'] = 'maruku-ref' a.attributes['href'] = "#" + self.refid a << Text.new(ref.num.to_s) a end |
#to_html_document(context = {}) ⇒ Object
Render to a complete HTML document (returns a string)
84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/maruku/output/to_html.rb', line 84 def to_html_document(context={}) indent = context[:indent] || -1 ie_hack = context[:ie_hack] ||true doc = to_html_document_tree xml = "" # REXML Bug? if indent!=-1 whitespace is not respected for 'pre' elements # containing code. doc.write(xml,indent,transitive=true,ie_hack); Xhtml11_mathml2_svg11 + xml end |
#to_html_document_tree ⇒ Object
Render to a complete HTML document (returns a REXML document tree)
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/maruku/output/to_html.rb', line 194 def to_html_document_tree doc = Document.new(nil,{:respect_whitespace =>:all}) # doc << XMLDecl.new root = Element.new('html', doc) root.add_namespace('http://www.w3.org/1999/xhtml') root.add_namespace('svg', "http://www.w3.org/2000/svg" ) lang = self.attributes[:lang] || 'en' root.attributes['xml:lang'] = lang root << xml_newline head = Element.new 'head', root #<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> me = Element.new 'meta', head me.attributes['http-equiv'] = 'Content-type' # me.attributes['content'] = 'text/html;charset=utf-8' me.attributes['content'] = 'application/xhtml+xml;charset=utf-8' METAS.each do |m| if value = self.attributes[m.to_sym] = Element.new 'meta', head .attributes['name'] = m .attributes['content'] = value.to_s end end self.attributes.each do |k,v| if k.to_s =~ /\Ameta-(.*)\Z/ = Element.new 'meta', head .attributes['name'] = $1 .attributes['content'] = v.to_s end end # Create title element doc_title = self.attributes[:title] || self.attributes[:subject] || "" title = Element.new 'title', head title << Text.new(doc_title) add_css_to(head) root << xml_newline body = Element.new 'body' children_to_html.each do |e| body << e end # render footnotes if @doc.footnotes_order.size > 0 body << render_footnotes end # When we are rendering a whole document, we add a signature # at the bottom. if get_setting(:maruku_signature) body << maruku_html_signature end root << body doc end |
#to_html_email_address ⇒ Object
755 756 757 758 759 760 761 762 763 764 765 766 |
# File 'lib/maruku/output/to_html.rb', line 755 def to_html_email_address email = self.email a = create_html_element 'a' #a.attributes['href'] = Text.new("mailto:"+obfuscate(email),false,nil,true) #a.attributes.add Attribute.new('href',Text.new( #"mailto:"+obfuscate(email),false,nil,true)) # Sorry, for the moment it doesn't work a.attributes['href'] = "mailto:#{email}" a << Text.new(obfuscate(email),false,nil,true) a end |
#to_html_emphasis ⇒ Object
459 |
# File 'lib/maruku/output/to_html.rb', line 459 def to_html_emphasis; wrap_as_element('em') end |
#to_html_entity ⇒ Object
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 |
# File 'lib/maruku/output/to_html.rb', line 928 def to_html_entity MaRuKu::Out::Latex.need_entity_table entity_name = self.entity_name if (e = MaRuKu::Out::Latex::ENTITY_TABLE[entity_name]) && e.html_num entity_name = e.html_num end # Fix for Internet Explorer if entity_name == 'apos' entity_name = 39 end if entity_name.kind_of? Fixnum # Entity.new(entity_name) Text.new('&#%d;' % [entity_name], false, nil, true) else Text.new('&%s;' % [entity_name], false, nil, true) end end |
#to_html_eqref ⇒ Object
209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/maruku/ext/math/to_html.rb', line 209 def to_html_eqref unless eq = self.doc.eqid2eq[self.eqid] maruku_error "Cannot find equation #{self.eqid.inspect}" return Text.new("(eq:#{self.eqid})") end a = Element.new 'a' a.attributes['class'] = 'maruku-eqref' a.attributes['href'] = "#eq:#{self.eqid}" a << Text.new("(#{eq.num})") a end |
#to_html_equation ⇒ Object
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/maruku/ext/math/to_html.rb', line 157 def to_html_equation mathml = get_setting(:html_math_output_mathml) && render_mathml(:equation, self.math) png = get_setting(:html_math_output_png) && render_png(:equation, self.math) mathjax = get_setting(:html_math_output_mathjax) && render_mathjax(:equation, self.math) if mathjax span = create_html_element 'span' add_class_to(span, 'maruku-equation') span << mathjax # mathjax handles equation numbering return span end div = create_html_element 'div' add_class_to(div, 'maruku-equation') if mathml if self.label # then numerate span = Element.new 'span' span.attributes['class'] = 'maruku-eq-number' span << Text.new("(#{self.num})") div << span div.attributes['id'] = "eq:#{self.label}" end add_class_to(mathml, 'maruku-mathml') div << mathml end if png img = adjust_png(png, false) add_class_to(img, 'maruku-png') div << img if self.label # then numerate span = Element.new 'span' span.attributes['class'] = 'maruku-eq-number' span << Text.new("(#{self.num})") div << span div.attributes['id'] = "eq:#{self.label}" end end source_span = Element.new 'span' add_class_to(source_span, 'maruku-eq-tex') code = convert_to_mathml_none(:equation, self.math.strip) code.attributes['style'] = 'display: none' source_span << code div << source_span div end |
#to_html_footnote_reference ⇒ Object
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 |
# File 'lib/maruku/output/to_html.rb', line 847 def to_html_footnote_reference id = self.footnote_id # save the order of used footnotes order = @doc.footnotes_order if order.include? id # footnote has already been used return [] end if not @doc.footnotes[id] return [] end # take next number order << id #num = order.size; num = order.index(id) + 1 sup = Element.new 'sup' sup.attributes['id'] = "#{get_setting(:doc_prefix)}fnref:#{num}" a = Element.new 'a' a << Text.new(num.to_s) a.attributes['href'] = "\##{get_setting(:doc_prefix)}fn:#{num}" a.attributes['rel'] = 'footnote' sup << a sup end |
#to_html_head_cell ⇒ Object
919 |
# File 'lib/maruku/output/to_html.rb', line 919 def to_html_head_cell; wrap_as_element('th') end |
#to_html_header ⇒ Object
497 498 499 500 501 502 503 504 505 |
# File 'lib/maruku/output/to_html.rb', line 497 def to_html_header element_name = "h#{self.level}" h = wrap_as_element element_name if span = render_section_number h.insert_before(h.children.first, span) end add_ws h end |
#to_html_hrule ⇒ Object
343 |
# File 'lib/maruku/output/to_html.rb', line 343 def to_html_hrule; create_html_element 'hr' end |
#to_html_im_image ⇒ Object
787 788 789 790 791 792 793 794 795 796 797 798 799 |
# File 'lib/maruku/output/to_html.rb', line 787 def to_html_im_image if not url = self.url maruku_error "Image with no url: #{self.inspect}" tell_user "Could not create image with ref_id = #{id.inspect};"+ " Using SPAN element as replacement." return wrap_as_element('span') end title = self.title a = create_html_element 'img' a.attributes['src'] = url.to_s a.attributes['alt'] = children_to_s return a end |
#to_html_im_link ⇒ Object
728 729 730 731 732 733 734 735 736 737 738 739 740 |
# File 'lib/maruku/output/to_html.rb', line 728 def to_html_im_link if url = self.url title = self.title a = wrap_as_element 'a' a.attributes['href'] = url a.attributes['title'] = title if title return a else maruku_error"Could not find url in #{self.inspect}" tell_user "Not creating a link for ref_id = #{id.inspect}." return wrap_as_element('span') end end |
#to_html_image ⇒ Object
Images
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 |
# File 'lib/maruku/output/to_html.rb', line 770 def to_html_image a = create_html_element 'img' id = self.ref_id if ref = @doc.refs[id] url = ref[:url] title = ref[:title] a.attributes['src'] = url.to_s a.attributes['alt'] = children_to_s else maruku_error"Could not find id = #{id.inspect} for\n #{self.inspect}" tell_user "Could not create image with ref_id = #{id.inspect};"+ " Using SPAN element as replacement." return wrap_as_element('span') end return a end |
#to_html_immediate_link ⇒ Object
698 699 700 701 702 703 704 705 706 |
# File 'lib/maruku/output/to_html.rb', line 698 def to_html_immediate_link a = create_html_element 'a' url = self.url text = url.gsub(/^mailto:/,'') # don't show mailto a << Text.new(text) a.attributes['href'] = url add_class_to_link(a) a end |
#to_html_inline_code ⇒ Object
658 659 660 661 662 663 664 665 666 667 668 669 |
# File 'lib/maruku/output/to_html.rb', line 658 def to_html_inline_code; pre = create_html_element 'code' source = self.raw_code pre << source2html(source) color = get_setting(:code_background_color) if color != Globals[:code_background_color] pre.attributes['style'] = "background-color: #{color};"+(pre.attributes['style']||"") end pre end |
#to_html_inline_math ⇒ Object
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/maruku/ext/math/to_html.rb', line 131 def to_html_inline_math mathml = get_setting(:html_math_output_mathml) && render_mathml(:inline, self.math) png = get_setting(:html_math_output_png) && render_png(:inline, self.math) mathjax = get_setting(:html_math_output_mathjax) && render_mathjax(:inline, self.math) span = create_html_element 'span' add_class_to(span, 'maruku-inline') if mathml add_class_to(mathml, 'maruku-mathml') return mathml end if png img = adjust_png(png, true) add_class_to(img, 'maruku-png') span << img end if mathjax span << mathjax end span end |
#to_html_li ⇒ Object
455 |
# File 'lib/maruku/output/to_html.rb', line 455 def to_html_li; add_ws wrap_as_element('li') end |
#to_html_li_span ⇒ Object
456 |
# File 'lib/maruku/output/to_html.rb', line 456 def to_html_li_span; add_ws wrap_as_element('li') end |
#to_html_linebreak ⇒ Object
344 |
# File 'lib/maruku/output/to_html.rb', line 344 def to_html_linebreak; Element.new 'br' end |
#to_html_link ⇒ Object
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 |
# File 'lib/maruku/output/to_html.rb', line 708 def to_html_link a = wrap_as_element 'a' id = self.ref_id if ref = @doc.refs[id] url = ref[:url] title = ref[:title] a.attributes['href'] = url if url a.attributes['title'] = title if title else maruku_error "Could not find ref_id = #{id.inspect} for #{self.inspect}\n"+ "Available refs are #{@doc.refs.keys.inspect}" tell_user "Not creating a link for ref_id = #{id.inspect}." return wrap_as_element('span') end # add_class_to_link(a) return a end |
#to_html_ol ⇒ Object
454 |
# File 'lib/maruku/output/to_html.rb', line 454 def to_html_ol; add_ws wrap_as_element('ol') end |
#to_html_paragraph ⇒ Object
453 |
# File 'lib/maruku/output/to_html.rb', line 453 def to_html_paragraph; add_ws wrap_as_element('p') end |
#to_html_quote ⇒ Object
457 |
# File 'lib/maruku/output/to_html.rb', line 457 def to_html_quote; add_ws wrap_as_element('blockquote') end |
#to_html_raw_html ⇒ Object
Attribute: filter_html Scope: document
If true, raw HTML is discarded from the output.
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 |
# File 'lib/maruku/output/to_html.rb', line 809 def to_html_raw_html return [] if get_setting(:filter_html) raw_html = self.raw_html if rexml_doc = @parsed_html root = rexml_doc.root if root.nil? s = "Bug in REXML: root() of Document is nil: \n#{rexml_doc.inspect}\n"+ "Raw HTML:\n#{raw_html.inspect}" maruku_error s tell_user 'The REXML version you have has a bug, omitting HTML' div = Element.new 'div' #div << Text.new(s) return div end # copies the @children array (FIXME is it deep?) elements = root.to_a return elements else # invalid # Creates red box with offending HTML tell_user "Wrapping bad html in a PRE with class 'markdown-html-error'\n"+ raw_html.gsub(/^/, '|') pre = Element.new('pre') pre.attributes['style'] = 'border: solid 3px red; background-color: pink' pre.attributes['class'] = 'markdown-html-error' pre << Text.new("REXML could not parse this XML/HTML: \n#{raw_html}", true) return pre end end |
#to_html_ref_definition ⇒ Object
989 |
# File 'lib/maruku/output/to_html.rb', line 989 def to_html_ref_definition; [] end |
#to_html_strong ⇒ Object
458 |
# File 'lib/maruku/output/to_html.rb', line 458 def to_html_strong; wrap_as_element('strong') end |
#to_html_table ⇒ Object
FIXME: Ugly code
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 |
# File 'lib/maruku/output/to_html.rb', line 886 def to_html_table align = self.align num_columns = align.size head = @children.slice(0, num_columns) rows = [] i = num_columns while i<@children.size rows << @children.slice(i, num_columns) i += num_columns end table = create_html_element 'table' thead = Element.new 'thead' tr = Element.new 'tr' array_to_html(head).each do |x| tr<<x end thead << tr table << thead tbody = Element.new 'tbody' rows.each do |row| tr = Element.new 'tr' array_to_html(row).each_with_index do |x,i| x.attributes['style'] ="text-align: #{align[i].to_s};" tr<<x end tbody << tr << Text.new("\n") end table << tbody table end |
#to_html_tree ⇒ Object
Render to an HTML fragment (returns a REXML document tree)
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/maruku/output/to_html.rb', line 161 def to_html_tree div = Element.new 'div' div.attributes['class'] = 'maruku_wrapper_div' children_to_html.each do |e| div << e end # render footnotes if @doc.footnotes_order.size > 0 div << render_footnotes end doc = Document.new(nil,{:respect_whitespace =>:all}) doc << div end |
#to_html_ul ⇒ Object
442 443 444 445 446 447 448 449 450 |
# File 'lib/maruku/output/to_html.rb', line 442 def to_html_ul if @attributes[:toc] # render toc html_toc = @doc.toc.to_html return html_toc else add_ws wrap_as_element('ul') end end |
#to_html_xml_instr ⇒ Object
951 952 953 954 955 |
# File 'lib/maruku/output/to_html.rb', line 951 def to_html_xml_instr target = self.target || '' code = self.code || '' REXML::Instruction.new(target, code) end |
#to_latex_ref_definition ⇒ Object
990 |
# File 'lib/maruku/output/to_html.rb', line 990 def to_latex_ref_definition; [] end |
#wrap_as_element(name, attributes_to_copy = []) ⇒ Object
renders children as html and wraps into an element of given name
Sets ‘id’ if meta is set
349 350 351 352 353 354 355 356 |
# File 'lib/maruku/output/to_html.rb', line 349 def wrap_as_element(name, attributes_to_copy=[]) m = create_html_element(name, attributes_to_copy) children_to_html.each do |e| m << e; end # m << Comment.new( "{"+self.al.to_md+"}") if not self.al.empty? # m << Comment.new( @attributes.inspect) if not @attributes.empty? m end |
#xml_newline ⇒ Object
118 |
# File 'lib/maruku/output/to_html.rb', line 118 def xml_newline() Text.new("\n") end |