mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
[docs minor]space for code-block (#16266)
* [docs minor]space for code-block * correct more errors * to runnableExamples * add newline
This commit is contained in:
@@ -52,15 +52,9 @@ proc loadUnidecodeTable*(datafile = "unidecode.dat") =
|
||||
proc unidecode*(s: string): string =
|
||||
## Finds the sequence of ASCII characters that is the closest approximation
|
||||
## to the UTF-8 string `s`.
|
||||
##
|
||||
## Example:
|
||||
##
|
||||
## ..code-block:: nim
|
||||
##
|
||||
## unidecode("北京")
|
||||
##
|
||||
## Results in: "Bei Jing"
|
||||
##
|
||||
runnableExamples:
|
||||
assert unidecode("北京") == "Bei Jing "
|
||||
|
||||
result = ""
|
||||
for r in runes(s):
|
||||
var c = int(r)
|
||||
|
||||
Reference in New Issue
Block a user