• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

FreeStyleWiki


Commit MetaInfo

Revision872f02cb482129c6de5affec10e44f71e6f12d13 (tree)
Zeit2018-10-18 13:48:39
Autorkgsoft <kgsoft@user...>
Commiterkgsoft

Log Message

BugTrack-wiki/352 : ブロック書式のエスケープ処理を修正

Ändern Zusammenfassung

Diff

--- a/lib/Wiki/Parser.pm
+++ b/lib/Wiki/Parser.pm
@@ -82,7 +82,7 @@ sub parse {
8282 }
8383
8484 # ¥Ö¥í¥Ã¥¯½ñ¼°¤Î¥¨¥¹¥±¡¼¥×
85- if($word2 eq "\\\\" || $word1 eq "\\"){
85+ if(!$self->{block} && ($word2 eq "\\\\" || $word1 eq "\\")){
8686 my @obj = $self->parse_line(substr($line, 1));
8787 $self->l_text(\@obj);
8888 next;