convergenceIM / alpha-scientist

Apache License 2.0
70 stars 54 forks source link

How to link to other posts #18

Closed convergenceIM closed 6 years ago

convergenceIM commented 6 years ago

What's the syntax to hyperlink to another one of the blog posts within jupyter markdown? I think you did this for me before publishing the first time and am not sure if you did directly within the html files or if pelican is smart enough to create the correct relative links to the ----.html files

yn-coder commented 6 years ago

i think you can try simple Jupyter link to the notebook slug, or may be slug.html

yn-coder commented 6 years ago

I've checked it.

If you insert the following text in markdown cell of your notebook

Link to [Notebook title](02_Feature_Engineering.ipynb)

it will be a correct notebook link in your Jupyter edit/view mode.

But pelican-ipynb doesn't proceeded it, so doesn't do like this.

So you need to add the ordinary href link, focused to html fiile, like this

[Notebook title](ensemble_modeling.html)

where ensemble_modeling.html is a resulting html file (take the name from docs folder files).

convergenceIM commented 6 years ago

Thanks I'll try that next time I publish

convergenceIM commented 6 years ago

Works, closing