mirror of https://github.com/status-im/NimYAML.git
10 lines
265 B
Nim
10 lines
265 B
Nim
|
proc yamlTestSuiteEscape*(s: string): string =
|
||
|
result = ""
|
||
|
for c in s:
|
||
|
case c
|
||
|
of '\l': result.add("\\n")
|
||
|
of '\c': result.add("\\r")
|
||
|
of '\\': result.add("\\\\")
|
||
|
of '\b': result.add("\\b")
|
||
|
of '\t': result.add("\\t")
|
||
|
else: result.add(c)
|