File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 33 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
44 * obtain one at https://mozilla.org/MPL/2.0/
55 *
6- * Copyright (C) 2008-2023 , Peter Johnson (gravatar.com/delphidabbler).
6+ * Copyright (C) 2008-2024 , Peter Johnson (gravatar.com/delphidabbler).
77 *
88 * Implements classes that render and parse Routine Extra Markup Language (REML)
99 * code. This markup is used to read and store active text objects as used by
@@ -1035,7 +1035,7 @@ class function TREMLEntities.CharToMnemonicEntity(const Ch: Char): string;
10351035 { Class constructor. Creates map of mnemonic entities to equivalent characters.
10361036 }
10371037begin
1038- SetLength(fEntityMap, 34 );
1038+ SetLength(fEntityMap, 35 );
10391039 // Supported character entities. All are optional unless otherwise stated
10401040 // REML v1
10411041 fEntityMap[0 ] := TREMLEntity.Create(' amp' , ' &' ); // required in REML
@@ -1074,6 +1074,8 @@ class function TREMLEntities.CharToMnemonicEntity(const Ch: Char): string;
10741074 fEntityMap[31 ] := TREMLEntity.Create(' laquo' , ' «' );
10751075 fEntityMap[32 ] := TREMLEntity.Create(' raquo' , ' »' );
10761076 fEntityMap[33 ] := TREMLEntity.Create(' iquest' , ' ¿' );
1077+ // REML v6
1078+ fEntityMap[34 ] := TREMLEntity.Create(' apos' , SINGLEQUOTE);
10771079end ;
10781080
10791081class destructor TREMLEntities.Destroy;
You can’t perform that action at this time.
0 commit comments