1986–87 Norwegian 1. Divisjon season

The 1986–87 Norwegian 1. Divisjon season was the 48th season of ice hockey in Norway. Ten teams participated in the league, and Valerenga Ishockey won the championship.

Regular season

Club GP W T L GF-GA Pts
1.Stjernen3625110225:13951
2.Vålerenga Ishockey3623310228:15049
3.Sparta Sarpsborg3622212167:14446
4.Frisk Asker3620115172:12241
5.Storhamar Ishockey3617217181:15736
6.Furuset IF3616218177:15934
7.Manglerud Star Ishockey3616218164:15934
8.Bergen/Djerv3616119178:22933
9.Viking IK369126162:24219
10.Hasle-Løren Idrettslag368127144:29717

Playoffs

 
Semi-finalsFinal
 
      
 
 
 
 
Stjernen2
 
 
 
Sparta Sarpsborg0
 
Stjernen1
 
 
 
Vålerenga Ishockey3
 
Vålerenga Ishockey2
 
 
Frisk Asker0
 
Third place
 
 
 
 
 
Not played
 
 
 
gollark: No, I have that stuff done.
gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
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?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.