Not sure how you can create a link to a new page with a rendered markdown 
file, but you can render the markdown file in the notebook with:

from IPython.display import display, Markdown

with open('readme.md', 'r') as fh:
    content = fh.read()

display(Markdown(content))



On Tuesday, November 15, 2016 at 8:55:03 PM UTC+2, Owen Kelly wrote:
>
> Hi All,
>
> I have a notebook file and a markdown file:
>    MyNotebook.ipynb
>    readme.md
>
> The notebook has a markdown cell that includes the following raw text
>
>   ## Instructions
>   [Setup instructions](http://localhost:8888/edit/readme.md) 
>
> When I process this cell, it looks good and the text "Setup instructions" 
> is a hotlink.
>
> When you follow the link, you come to a page where you can *edit* 
> readme.md .
> I want to go to a page where readme.md is *rendered*.
>
> Any thoughts on how to do that?
>
> Thanks and regards,
>
> Owen
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/d21b540f-0d00-457d-82b2-9be6e1cf6355%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to