Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
df8bab3
Added a filter to convert mathematical expressions
pfossati Feb 27, 2016
76cc54a
Fixed path to math filter
pfossati Feb 27, 2016
b70c09f
Fixed regex in math filter
pfossati Feb 27, 2016
82b1a72
Fixed regex in math filter
pfossati Feb 27, 2016
129395e
Added metadata filter
pfossati Feb 27, 2016
37c6200
Updated metadata filter
pfossati Feb 27, 2016
277cf84
Support structured pages.
capitalm-chen Jun 1, 2016
71168f1
Merge branch 'release/0.2.6.1'
capitalm-chen Jun 1, 2016
6d6bebe
Merge tag '0.2.6.1' into develop
capitalm-chen Jun 1, 2016
f00f6ae
Remove chapter numbering.
capitalm-chen Jul 26, 2016
6ad5599
Merge pull request #1 from capitalm-chen/feature/remove-chapter-numbe…
capitalm-chen Jul 26, 2016
5a08a9c
Merge branch 'release/0.2.6.2'
capitalm-chen Jul 26, 2016
fc59336
Remove extra added header # symbol
Jul 29, 2016
1cd3cf4
Added support for pages without titles specified in mkdocs.yml
twardoch Jan 7, 2017
ddb4893
Added support for pages without titles specified in mkdocs.yml
twardoch Jan 7, 2017
1c95ea9
Added support for pages without titles specified in mkdocs.yml
twardoch Jan 7, 2017
39b93e9
Merge pull request #1 from mihkels/master
twardoch Jan 7, 2017
67d8391
Merge pull request #2 from capitalm-chen/master
twardoch Jan 7, 2017
4f63fcc
Merge pull request #3 from kergonath/master
twardoch Jan 7, 2017
ef5ace8
Added support for pages without titles specified in mkdocs.yml
twardoch Jan 7, 2017
96f4abf
Merge branch 'master' into 2017-01-07-pagesnotitles
twardoch Jan 7, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 133 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,133 @@
*.egg-info
*.pyc
*.swp
/srcdocs/wiki

# Mac OS X internals
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Bower and NPM libraries
bower_components
node_modules

# Build files
build
MANIFEST
site

# PyCharm CE files
.idea/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
.venv/
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject
Loading