Am trying to render markdown views into my master page aka 'Layout.cshtml'. So far I got my solution to render the markdown using my own view engine and view.
I'd like to to keep the master page, 'Layout.cshtml', rendering with razor for dynamic navigation etc. and only pass it the parsed contents from my markdown in RenderBody()
or else.
What I am missing is a hook for the master page in e.g. IView
's Render(...)
method to get my contents in ... :/
How to get views from the custom view engine to render in the razor view engine's master page?
P.S. using ServiceStack is not an option atm :)