Skip to content

Instantly share code, notes, and snippets.

View jakobgager's full-sized avatar

Jakob Gager jakobgager

  • Vienna, Austria
View GitHub Profile
@jakobgager
jakobgager / LICENSE
Last active August 29, 2015 14:15 — forked from z-m-k/LICENSE
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. {http://fsf.org/}
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
@jakobgager
jakobgager / Comp_citation2latex.ipynb
Last active December 24, 2015 20:39
Testfile for new citation2latex filter
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakobgager
jakobgager / concealLatex.py
Last active December 22, 2015 12:39
pandoc filters to convert markdown with html and equations to latex
#!/usr/bin/env python
"""
Pandoc filter to conceal raw latex in json.
"""
from pandoc_2 import toJSONFilter
def concealLatex(key, value, format):
if key == 'RawInline':