Class: String

Inherits:
Object show all
Includes:
MaRuKu::Strings
Defined in:
lib/maruku/input/type_detection.rb,
lib/maruku/attributes.rb,
lib/maruku/output/to_html.rb,
lib/maruku/ext/math/latex_fix.rb,
lib/maruku/output/to_markdown.rb,
lib/maruku/structures_inspect.rb,
lib/maruku/output/to_latex_strings.rb,
lib/maruku/input_textile2/t2_parser.rb

Overview

Copyright (C) 2006  Andrea Censi  <andrea (at) rubyforge.org>

This file is part of Maruku.

Maruku is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

Maruku is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Maruku; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

++

Constant Summary collapse

LATEX_ADD_SLASH =

These are TeX’s special characters

[ ?{, ?}, ?$, ?&, ?#, ?_, ?%]
LATEX_TO_CHARCODE =

These, we transform to char<ascii code>

[ ?^, ?~, ?>,?<]
OtherGoodies =

other things that are good on the eyes

{
	/(\s)LaTeX/ => '\1\\LaTeX\\xspace ', # XXX not if already \LaTeX
#		'HTML' => '\\textsc{html}\\xspace ',
#		'PDF' => '\\textsc{pdf}\\xspace '
}
Textile2_EmptyLine =
/^\s*$/
Textile2_Signature =
/^(\S+\.?)\.\s(.*)/

Constants included from MaRuKu::Strings

MaRuKu::Strings::Abbreviation, MaRuKu::Strings::AttributeDefinitionList, MaRuKu::Strings::Definition, MaRuKu::Strings::EMailAddress, MaRuKu::Strings::FootnoteText, MaRuKu::Strings::HeaderWithAttributes, MaRuKu::Strings::HeaderWithId, MaRuKu::Strings::IncompleteLink, MaRuKu::Strings::InlineAttributeList, MaRuKu::Strings::LinkRegex, MaRuKu::Strings::MightBeTableHeader, MaRuKu::Strings::Sep, MaRuKu::Strings::TabSize, MaRuKu::Strings::TableSeparator

Instance Method Summary collapse

Methods included from MaRuKu::Strings

#add_tabs, #dbg_describe_ary, #force_linebreak?, #line_md_type, #normalize_key_and_value, #num_leading_hashes, #number_of_leading_spaces, #parse_email_headers, #sanitize_ref_id, #spaces_before_first_char, #split_lines, #strip_hashes, #strip_indent, #unquote

Instance Method Details

#escape_to_latex(s) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/maruku/output/to_latex_strings.rb', line 31

def escape_to_latex(s)
	s2 = ""
	s.each_byte do |b|
		if LATEX_TO_CHARCODE.include? b
			s2 += "{\\tt \\char#{b}}" 
		elsif LATEX_ADD_SLASH.include? b
			s2 << ?\\ << b
		elsif b == ?\\
		# there is no backslash in cmr10 fonts
			s2 += "$\\backslash$"
		else
			s2 << b
		end
	end
	s2
end

#fix_latexObject

fix some LaTeX command-name clashes



3
4
5
6
7
8
9
10
11
# File 'lib/maruku/ext/math/latex_fix.rb', line 3

def fix_latex
	if #{html_math_engine} == 'itex2mml'
		s = self.gsub("\\mathop{", "\\operatorname{")
		s.gsub!(/\\begin\{svg\}.*?\\end\{svg\}/m, " ")
		s.gsub("\\space{", "\\itexspace{")
	else
		self
	end
end

#inspect_more(a = nil, b = nil) ⇒ Object



24
25
26
# File 'lib/maruku/structures_inspect.rb', line 24

def inspect_more(a=nil,b=nil)
	inspect
end

#md_typeObject



23
24
25
# File 'lib/maruku/input/type_detection.rb', line 23

def md_type()
	@md_type ||= line_md_type(self)
end

#mysplitObject

“ andrea censi ” => [“ andrea ”, “censi ”]



29
30
31
# File 'lib/maruku/output/to_markdown.rb', line 29

def mysplit
	split.map{|x| x+" "}
end

#quote_if_neededObject



23
24
25
26
27
28
29
# File 'lib/maruku/attributes.rb', line 23

def quote_if_needed
	if /[\s\'\"]/.match self
		inspect
	else
		self
	end
end

#t2_contains_signature?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/maruku/input_textile2/t2_parser.rb', line 9

def t2_contains_signature?
	self =~ Textile2_Signature
end

#t2_empty?Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/maruku/input_textile2/t2_parser.rb', line 5

def t2_empty?
	self =~ Textile2_EmptyLine
end

#t2_get_signatureObject

sig, rest = t2_get_signature



14
15
16
17
# File 'lib/maruku/input_textile2/t2_parser.rb', line 14

def t2_get_signature
	self =~ Textile2_Signature
	return Textile2Signature.new($1), $2
end

#to_htmlObject

A string is rendered into HTML by creating a REXML::Text node. REXML takes care of all the encoding.



34
35
36
# File 'lib/maruku/output/to_html.rb', line 34

def to_html
	REXML::Text.new(self)
end

#to_latexObject

escapes special characters



49
50
51
52
53
54
55
# File 'lib/maruku/output/to_latex_strings.rb', line 49

def to_latex
	s = escape_to_latex(self)
	OtherGoodies.each do |k, v|
		s.gsub!(k, v)
	end
	s
end

#to_md(c = nil) ⇒ Object

XXX: markdown escaping



24
25
26
# File 'lib/maruku/output/to_markdown.rb', line 24

def to_md(c=nil)
	to_s
end