Laekvere Parish
Laekvere Parish (Estonian: Laekvere vald) was a rural municipality of Estonia, in Lääne-Viru County. It had a population of 1837 (2006) and an area of 352.42 km².
Laekvere Parish Laekvere vald | |
---|---|
Laekvere dairy | |
Flag Coat of arms | |
Laekvere Parish within Lääne-Viru County. | |
Country | |
County | |
Administrative centre | Laekvere |
Area | |
• Total | 352.42 km2 (136.07 sq mi) |
Population (2006) | |
• Total | 1,837 |
• Density | 5.2/km2 (14/sq mi) |
Website | www.laekvere.ee |
Populated places
Laekvere Parish had 1 small borough and 18 villages.
Small borough
Villages
Alekvere (26), Arukse (27), Ilistvere (5), Kaasiksaare (37), Kellavere (8), Luusika (0), Moora (141), Muuga (276), Paasvere (209), Padu (49), Rahkla (172), Rajaküla (78), Rohu (68), Salutaguse (29), Sirevere (22), Sootaguse (2), Vassivere (36), Venevere (169).
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?
References
- This article includes content from the Estonian Wikipedia article Laekvere vald.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.