definition:
|
removeEscapes :: String -> String
removeEscapes s = case s of
[] -> []
('\\':c:cs) -> if c `elem` markdownEscapeChars
then c : removeEscapes cs
else '\\' : removeEscapes (c:cs)
(c:cs) -> c : removeEscapes cs
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Remove the backlash of escaped markdown characters in a string.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> {[]} || ({:}) |-> {:}}
|
name:
|
removeEscapes
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
String -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|