mirror of
https://github.com/status-im/NimYAML.git
synced 2025-01-13 04:54:19 +00:00
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) |