From 37b40e95175ccd3c8bedd803e5137f2bc93952c2 Mon Sep 17 00:00:00 2001 From: chaals Date: Sun, 2 Dec 2018 15:24:31 +0100 Subject: [PATCH] Example typo correction (#1662) * Example typo correction Markdown does odd things with "&" * Thank you --- sections/acknowledgements.include | 3 ++- sections/syntax.include | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sections/acknowledgements.include b/sections/acknowledgements.include index 6be9f17056..ce7d2815e6 100644 --- a/sections/acknowledgements.include +++ b/sections/acknowledgements.include @@ -59,7 +59,7 @@ Chaals McCathie Nevile, Chris Harvey, Chris Rebert, - cinephile85, + "cinephile85", Collin Anderson, Dan Beam, Daniel Buchner, @@ -107,6 +107,7 @@ Léonie Watson, Lea Verou, Maciej Stachowiak, + "maffe", Mallory van Achterberg, Marco Zehe, Mark Svancarek, diff --git a/sections/syntax.include b/sections/syntax.include index cbc199c131..d8cb48239f 100644 --- a/sections/syntax.include +++ b/sections/syntax.include @@ -3484,11 +3484,11 @@
If the markup contains (not in an attribute) the string `I'm ¬it; I tell you`, the character reference is parsed as "not", as in, `I'm ¬it; I tell you` (and this is a parse - error). But if the markup was `I'm ∉ I tell you`, the character reference would + error). But if the markup was `I'm ∉ I tell you`, the character reference would be parsed as "notin;", resulting in `I'm ∉ I tell you` (and no parse error). However, if the markup contains the string `I'm &notit; I tell you` in an attribute, - no character reference is parsed and string remains intact (and there is no parse error). + there is no parse error and the string `I'm ¬it; I tell you` is the result of parsing.