Commit 21be86c4 authored by Richard Berger's avatar Richard Berger
Browse files

Fix typos in txt2html

parent d6800405
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -205,7 +205,7 @@ which are converted into HTML.
  <LI> "}" (right bracket) --&gt; turn-off italics by 
    inserting a &lt;/I&gt; </UL>

<P>If a backspace '\' preceeds any of the bold/italic mark-up characters,
<P>If a backspace '\' precedes any of the bold/italic mark-up characters,
then mark-up is not performed; the mark-up character is simply left in
the text.
</P>
+1 −1
Original line number Diff line number Diff line
@@ -561,7 +561,7 @@ void substitute(string &s)
  string punctuation = ".,?!;:()";

  // substitute for bold & italic markers
  // if preceeded by \ char, then leave markers in text
  // if preceded by \ char, then leave markers in text

  n = s.find_first_of("[]{}");
  while (n != string::npos) {