Vladan Milosavljev

Vladan Milosavljev (Serbian Cyrillic: Владан Милосављев; born 1 February 1987) is a Serbian footballer who plays as a left winger for Inđija.

Vladan Milosavljev
Personal information
Full name Vladan Milosavljev
Date of birth (1987-02-01) 1 February 1987
Place of birth Belgrade, SFR Yugoslavia
Height 1.72 m (5 ft 7 12 in)
Playing position(s) Left Winger
Club information
Current team
Inđija
Number 35
Youth career
Rad
Senior career*
Years Team Apps (Gls)
2004–2006 Rad 18 (2)
2006–2008 Red Star Belgrade 2 (0)
2006–2007Rad (loan) 10 (1)
2007Vardar (loan) 12 (3)
2008Hajduk Kula (loan) 5 (0)
2008–2012 Karviná 99 (18)
2012Viktoria Žižkov (loan) 12 (0)
2012–2014 Baník Ostrava 33 (3)
2014–2015 Levadiakos 38 (6)
2016 Borac Banja Luka 10 (2)
2016–2017 OFI Crete 26 (6)
2017 Apollon Pontou 3 (0)
2018 Trikala 18 (1)
2018 Luftëtari 18 (1)
2019 Tyumen 12 (2)
2019– Inđija
* Senior club appearances and goals counted for the domestic league only and correct as of 25 May 2019

FC Baník Ostrava

He came to Ostrava in July 2012. He made his debut for FC Baník Ostrava[1] against FK Baumit Jablonec on 28 July 2012.

On 29 December 2017 he joined Trikala. [2] On 6 January 2018 he made his debut and scored a late winner in an away match against Veria. [3]

gollark: The current version uses a bunch of `defer`s to deallocate stuff as needed (I don't *think* it has any horrible memory leaks!). This works fine given that that stuff is all within one function, but I need similar logic in another one.
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```

References

  1. JABLONEC VS. BANÍK OSTRAVA 2 - 0 28.07.2012, soccerway.com
  2. "Κάτοικος Τρικάλων ο Μιλοσάβλιεφ!" (in Greek). Retrieved 2017-12-29.
  3. "Βέροια - Τρίκαλα 0-1!" (in Greek). Retrieved 2018-01-06.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.