Spring: The Appendix
Spring: The Appendix is an album by Norwegian musician Finn Coren, and is the follow-up to 1997's Spring. As with its predecessor, all words are by William Blake and music by Coren.
Spring: The Appendix | |
---|---|
Studio album by | |
Released | 1998 |
Track listing
- "Spring"
- "The Little Vagabond"
- "Nurse's Song"
- "The Wild Flower's Song I"
- "A Poison Tree"
- "The Tyger" ('93 Version)
- "The Lamb"
- "Soft Snow"
- "The Angel"
- "The Fly" (Norwegian Folk Version)
- "Song: How Sweet I Roamed From Field to Field"
- "The Wild Flower's Song II"
gollark: Okay, I fixed some bracket handling, great.
gollark: OH NOSEGMENTATION VIOLATIONDEPLOY BEES
gollark: It's not actually finished yet, either.
gollark: ```rust let parser = Parser::new_ext(md, options).map(|ev| match ev { Event::Text(txt) => { match &*txt { "[" => { // wikilink has opened, two consecutive [ if was_bracket { in_wikilink = true; was_bracket = false; } else { was_bracket = true; } Event::Text("".into()) }, "]" => { // wikilink has closed, two consecutive ] if in_wikilink && was_bracket { was_bracket = false; return Event::Html("<a href='/bees'>commit</a>".into()); } if in_wikilink { was_bracket = true; } Event::Text("".into()) }, _ => { let w = was_bracket; was_bracket = false; if w { return Event::Text(format!("bracket!{}", &*txt).into()); } was_bracket = false; if in_wikilink { wlbuf.push_str(&*txt); Event::Text("".into()) } else { Event::Text(txt) } } } }, _ => ev });```
gollark: <:bees:724389994663247974> this is convoluted.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.