Skip to content
Snippets Groups Projects
Commit e83b97e2 authored by mazenovi's avatar mazenovi
Browse files

add math_render plugin

parent b7fb04f6
No related branches found
No related tags found
No related merge requests found
Metadata-Version: 1.0
Name: blog-limos
Version: 1.0
Summary: UNKNOWN
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
blog_limos.egg-info/PKG-INFO
blog_limos.egg-info/SOURCES.txt
blog_limos.egg-info/dependency_links.txt
blog_limos.egg-info/requires.txt
blog_limos.egg-info/top_level.txt
\ No newline at end of file
pelican
markdown
beautifulsoup4
......@@ -3,6 +3,8 @@ Date: 2017-05-16 10:20
Status: Published
Tags: doc, admin, www
$e=mc^2$
La [doc cri](https://doc.cri.isima.fr/) et la [doc user](https://doc.isima.fr/) de l'ISIMA/LIMOS sont toutes les deux rédigées avec le [projet MkDocs](http://www.mkdocs.org/). ```mkdocs``` permet de générer une documenation html statique à partir de simples fichiers textes au format [markdown](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).
L'idée est de centraliser et surtout de mettre à jour les documentations historiques
......
......@@ -94,7 +94,7 @@ DISPLAY_CATEGORIES_ON_MENU = False
THEME = os.path.dirname(os.path.abspath(__file__)) + "/themes/limos"
JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n']}
PLUGIN_PATHS = [os.path.dirname(os.path.abspath(__file__)) + '/plugins']
PLUGINS = ['i18n_subsites', 'tag_cloud', 'tipue_search', 'extract_toc'] #, 'pandoc_reader']
PLUGINS = ['i18n_subsites', 'tag_cloud', 'tipue_search', 'extract_toc', 'math_render']
MARKDOWN = {'extensions': ['toc']}
I18N_TEMPLATES_LANG = 'en'
# https://bootswatch.com/
......
math_render @ 2bb931ab
Subproject commit 2bb931abf47ed1b23da0c6ae41f82149b132c49f
......@@ -7,6 +7,7 @@ setup(
install_requires=[
'pelican',
'markdown',
'beautifulsoup4'
'beautifulsoup4',
'typogrify'
]
)
......@@ -98,7 +98,6 @@
<link href="{{ SITEURL }}/{{ CATEGORY_FEED_ATOM|format(category.slug) }}" type="application/atom+xml" rel="alternate"
title="{{ SITENAME }} {{ category }} ATOM Feed"/>
{% endif %}
</head>
<body>
......@@ -142,7 +141,7 @@
</li>
{% endfor %}
{% endif %}
{% if ARCHIVES_SAVE_AS %}
<li><a href="{{ SITEURL }}/{{ ARCHIVES_URL | default('archives.html') }}"><i class="fa fa-th-list"></i><span class="icon-label">{{ _('Archives') }}</span></a></li>
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment