mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 10:49:33 -06:00
printing %
This commit is contained in:
@@ -27,11 +27,13 @@ render d = rend 0 (map ($ "") $ d []) "" where
|
|||||||
|
|
||||||
"[" :ts -> showChar '[' . rend i ts
|
"[" :ts -> showChar '[' . rend i ts
|
||||||
"(" :ts -> showChar '(' . rend i ts
|
"(" :ts -> showChar '(' . rend i ts
|
||||||
|
"%" :ts -> showChar '%' . rend i ts
|
||||||
"{" :ts -> showChar '{' . new (i+1) . rend (i+1) ts
|
"{" :ts -> showChar '{' . new (i+1) . rend (i+1) ts
|
||||||
"}" : ";":ts -> new (i-1) . space "}" . showChar ';' . new (i-1) . rend (i-1) ts
|
"}" : ";":ts -> new (i-1) . space "}" . showChar ';' . new (i-1) . rend (i-1) ts
|
||||||
"}" :ts -> new (i-1) . showChar '}' . new (i-1) . rend (i-1) ts
|
"}" :ts -> new (i-1) . showChar '}' . new (i-1) . rend (i-1) ts
|
||||||
";" :ts -> showChar ';' . new i . rend i ts
|
";" :ts -> showChar ';' . new i . rend i ts
|
||||||
t : "," :ts -> showString t . space "," . rend i ts
|
t : "," :ts -> showString t . space "," . rend i ts
|
||||||
|
t : "%" :ts -> showString t . showChar '%' . rend i ts
|
||||||
t : ")" :ts -> showString t . showChar ')' . rend i ts
|
t : ")" :ts -> showString t . showChar ')' . rend i ts
|
||||||
t : "]" :ts -> showString t . showChar ']' . rend i ts
|
t : "]" :ts -> showString t . showChar ']' . rend i ts
|
||||||
t :ts -> space t . rend i ts
|
t :ts -> space t . rend i ts
|
||||||
|
|||||||
Reference in New Issue
Block a user