diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sisu/v3/dal_syntax.rb | 4 | ||||
| -rw-r--r-- | lib/sisu/v3/epub_tune.rb | 2 | ||||
| -rw-r--r-- | lib/sisu/v3/html_tune.rb | 2 | 
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/sisu/v3/dal_syntax.rb b/lib/sisu/v3/dal_syntax.rb index 5b308009..8f029fe5 100644 --- a/lib/sisu/v3/dal_syntax.rb +++ b/lib/sisu/v3/dal_syntax.rb @@ -453,8 +453,8 @@ module SiSU_DAL_Syntax          dob=fontface(dob)          dob.obj=dob.obj.gsub(/<[:e]\s+(.+?)!?>/,              "#{Mx[:en_a_o]}\\1#{Mx[:en_a_c]}").                                                                                                                             #not tested -          gsub(/^\s*_\*\s*/, -            "#{Mx[:gl_bullet]}").                                                                                                                                           #bullets, shortcut +          gsub(/(^|#{Mx[:br_nl]})\s*_\*\s*/, +            "\\1#{Mx[:gl_bullet]}").                                                                                                                                           #bullets, shortcut            gsub(/=\{(.+?)\}/,              "#{Mx[:idx_o]}\\1#{Mx[:idx_c]}").            gsub(/^\s*_([1-9])\*\s*/, diff --git a/lib/sisu/v3/epub_tune.rb b/lib/sisu/v3/epub_tune.rb index 3a5669c6..a9bf31b0 100644 --- a/lib/sisu/v3/epub_tune.rb +++ b/lib/sisu/v3/epub_tune.rb @@ -238,7 +238,7 @@ module SiSU_EPUB_Tune            gsub(/#{Mx[:fa_strike_o]}(.+?)#{Mx[:fa_strike_c]}/,'<del>\1</del>').            gsub(/#{Mx[:fa_monospace_o]}(.+?)#{Mx[:fa_monospace_c]}/,'<tt>\1</tt>'). # tt, kbd            gsub(/#{Mx[:mk_o]}:name#(\S+?)#{Mx[:mk_c]}/,''). -          gsub(/^#{Mx[:gl_bullet]}/m,'●  '). +          gsub(/#{Mx[:gl_bullet]}/m,'●  ').            gsub(/#{Mx[:nbsp]}/,' ').            gsub(/<(p|br)>/,'<\1 />')          dob.obj=SiSU_EPUB_Tune::CleanXHTML.new(dob.obj).clean diff --git a/lib/sisu/v3/html_tune.rb b/lib/sisu/v3/html_tune.rb index a1c9a8dc..f7b60cff 100644 --- a/lib/sisu/v3/html_tune.rb +++ b/lib/sisu/v3/html_tune.rb @@ -354,7 +354,7 @@ module SiSU_HTML_Tune          gsub(/#{Mx[:fa_strike_o]}(.+?)#{Mx[:fa_strike_c]}/,'<del>\1</del>').          gsub(/#{Mx[:fa_monospace_o]}(.+?)#{Mx[:fa_monospace_c]}/,'<tt>\1</tt>'). # tt, kbd          gsub(/#{Mx[:mk_o]}:name#(\S+?)#{Mx[:mk_c]}/,'<a name="\1"></a>'). -        gsub(/^#{Mx[:gl_bullet]}/m,'●  '). +        gsub(/#{Mx[:gl_bullet]}/m,'●  ').          gsub(/#{Mx[:nbsp]}/,' ').          gsub(/<(p|br)>/,'<\1 />')        dob=SiSU_HTML_Tune::CleanHTML.new(dob).clean  | 
