Erreur de Typo dans la fonction load_marKdown_files
This commit is contained in:
parent
c35ed68d0a
commit
baa5c49927
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ def home():
|
|||
|
||||
:return: La page 'index.html' avec les events
|
||||
"""
|
||||
mds = load_mardown_files()
|
||||
mds = load_markdown_files()
|
||||
return render_template('index.html', mds=mds)
|
||||
|
||||
|
||||
|
@ -55,9 +55,9 @@ def del_links(html):
|
|||
return new_html
|
||||
|
||||
|
||||
def load_mardown_files():
|
||||
def load_markdown_files():
|
||||
"""
|
||||
Charge les fichiers markdowns correspondant aux evenements.
|
||||
Charge les fichiers markdown correspondant aux evenements.
|
||||
|
||||
La fonction parcour l'ensemble des fichiers dans le dossier 'md_path'. Elle commence par verifier que l'extention
|
||||
est correcte puis qu'il y a bien le bon nombre d'elements dans le nom du fichier (jour_mois_annee_titre.md). Elle
|
||||
|
|
Loading…
Reference in a new issue