diff options
author | Ralph Amissah <ralph@amissah.com> | 2010-10-13 10:46:24 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2010-10-13 10:46:24 -0400 |
commit | 9314a7a39594771f4af18448fa053b158237a2b6 (patch) | |
tree | 2c94dd744b38c7c962b1fba239c2bdbde696e32f | |
parent | texpdf, first space following a bullet should be fixed width, fix (diff) |
texpdf, first space following a bullet should be fixed width (also), fix
-rw-r--r-- | lib/sisu/v2/texpdf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sisu/v2/texpdf.rb b/lib/sisu/v2/texpdf.rb index 144ee67a..9f59032b 100644 --- a/lib/sisu/v2/texpdf.rb +++ b/lib/sisu/v2/texpdf.rb @@ -406,7 +406,7 @@ module SiSU_TeX @lineone=case dob.is when /alt|group|verse/ dob.tmp.gsub!(/#{Mx[:nbsp]}/m,'{~}') - dob.tmp.gsub!(/#{Mx[:gl_bullet]}/m,'$\txtbullet$~~') + dob.tmp.gsub!(/#{Mx[:gl_bullet]}/m,'$\txtbullet$\hspace{\enspace}') dob.tmp.gsub!(/#{Mx[:br_nl]}+/m,"\n\n") #match not ideal, but currently not inserting extra newlines anyway ocn=SiSU_TeX_Pdf::Format_text_object.new(@md).ocn_display(dob) dob.tmp=if dob.is=='group' \ |