Fix typos in txt2html

This commit is contained in:
Richard Berger 2017-03-07 00:58:03 -05:00
parent d6800405a5
commit 21be86c423
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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) {