aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v5/txt_textile.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2014-01-06 22:42:31 -0500
committerRalph Amissah <ralph@amissah.com>2014-01-06 22:42:31 -0500
commit0e42ce6f34c3cfdf370f439f58c4e3de8b05ea92 (patch)
tree6fc9ffb3f627a91138a1479d6fa144687b7b45e3 /lib/sisu/v5/txt_textile.rb
parentv5: docbook, fictionbook, some tidying (diff)
v5: cosmetic code, case statement
Diffstat (limited to 'lib/sisu/v5/txt_textile.rb')
-rw-r--r--lib/sisu/v5/txt_textile.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/sisu/v5/txt_textile.rb b/lib/sisu/v5/txt_textile.rb
index aaa6066a..ddba6b6c 100644
--- a/lib/sisu/v5/txt_textile.rb
+++ b/lib/sisu/v5/txt_textile.rb
@@ -127,9 +127,9 @@ module SiSU_Txt_Textile
@brace_url=SiSU_Viz::Defaults.new.url_decoration
@tab="\t"
@@endnotes_=case md.opt.mod.inspect
- when /--footnote/; false
- when /--endnote/; true
- else true
+ when /--footnote/ then false
+ when /--endnote/ then true
+ else true
end
@plaintext={ body: [], open: [], close: [], head: [], metadata: [], tail: [] }
end
@@ -346,12 +346,12 @@ WOK
end
def heading_decorated_inline(dob)
heading_inline = case dob.lc
- when 1; decorate.heading.inline.l1
- when 2; decorate.heading.inline.l2
- when 3; decorate.heading.inline.l3
- when 4; decorate.heading.inline.l4
- when 5; decorate.heading.inline.l5
- when 6; decorate.heading.inline.l6
+ when 1 then decorate.heading.inline.l1
+ when 2 then decorate.heading.inline.l2
+ when 3 then decorate.heading.inline.l3
+ when 4 then decorate.heading.inline.l4
+ when 5 then decorate.heading.inline.l5
+ when 6 then decorate.heading.inline.l6
end
heading_inline + ' ' + dob.obj
end