Banyan Productions
Banyan Productions is a production company located in Philadelphia, Pennsylvania, United States. Clients include Discovery Channel, the Food Network, Fox, HGTV, Lifetime, NBC, Nickelodeon/Nick at Nite, TLC, and the Travel Channel. Banyan Productions was founded in 1992 by Susan Cohen-Dickler, Jan Dickler and Ray Murray, the former host of Evening Magazine on KYW-TV 3 in Philadelphia.
TV shows
- A Dating Story (2000)
- A Makeover Story (2000)
- Ambush Makeover (2004)
- A Wedding Story (1997)
- Birth Day (2000)
- Deliver Me (2008)
- Design Invasion (2004)
- Design Basics (2001)
- Discover Magazine (TV series) (1996)
- Epicurious (2000)
- Furniture to Go (1994)
- 48 Hour Wedding (2001)
- Gimme Shelter (1998)
- Guys Rooms (2002)
- Hi-Jinks (2005)
- Home Matters (1993)
- Nice Package (2004)
- On the Inside (1997)
- Perfect Proposal (2003-2005)
- Renovations (2000)
The Reunion 1998 [TV series] first Docuseries Lynda Rose/Jennifer Paige reunion
- Surviving Motherhood (2006)
- Trading Spaces (2001-2007)
- Trading Spaces: Boys vs. Girls (2003)
- Trading Spaces: Home Free (2004)
- Travelers (1996)
- The Princess Girl Diaries (2003)
gollark: I just want to know how to idiomatically make GCable wrappers for the various C objects.
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.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.