mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
Merge branch 'devel' of https://github.com/Araq/Nimrod into devel
This commit is contained in:
@@ -28,13 +28,19 @@ proc processContent(content: string) =
|
||||
officialCount = 0
|
||||
unofficialList = ""
|
||||
unofficialCount = 0
|
||||
let
|
||||
endings = {'.', '!'}
|
||||
|
||||
for pkg in jsonArr:
|
||||
assert pkg.kind == JObject
|
||||
let pkgWeb =
|
||||
if pkg.hasKey("web"): pkg["web"].str
|
||||
else: pkg["url"].str
|
||||
let listItem = li(a(href=pkgWeb, pkg["name"].str), " ", pkg["description"].str)
|
||||
let
|
||||
desc = pkg["description"].str
|
||||
# Review array index access when #1291 is solved.
|
||||
dot = if desc.high > 0 and desc[<desc.high] in endings: "" else: "."
|
||||
listItem = li(a(href=pkgWeb, pkg["name"].str), " ", desc & dot)
|
||||
if pkg["url"].str.startsWith("git://github.com/nimrod-code") or
|
||||
"official" in pkg["tags"].elems:
|
||||
officialCount.inc
|
||||
|
||||
Reference in New Issue
Block a user