In [1]:
    
# just generating the list here, nothing to see...
from IPython.display import Markdown
from glob import glob
Markdown("\n".join([
    "-  <a href='{1}' target='_blank'>{0}</a>".format(x[9:-6].replace("_", " "), x)
    for x in sorted(glob("examples/*.ipynb"))
]))
    
    Out[1]:
In [2]:
    
Markdown("### Examples presented during Sage Days 74\n"+"\n".join([
    "-  <a href='{1}' target='_blank'>{0}</a>".format(x[9:-6].replace("_", " "), x)
    for x in sorted(glob("examples/SageDays74/*.ipynb"))
]))
    
    Out[2]:
In [ ]: