You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
class String
|
|
SPECIAL_TEX_CHAR_TABLE = {
|
|
"'" => "\\textquotesingle ",
|
|
"\"" => "\\textquotedbl " # TODO: see which one works.. "\textquotedbl "
|
|
}.freeze
|
|
|
|
def tex_safe
|
|
safe_string = self.dup
|
|
SPECIAL_TEX_CHAR_TABLE.each_pair do |key, replacement|
|
|
safe_string.gsub!(key,replacement)
|
|
end
|
|
safe_string
|
|
end
|
|
end
|
|
|