Merge pull request #2 from rossant/license

Add license
This commit is contained in:
Cyrille Rossant 2015-09-02 22:11:02 +02:00
commit 3368210c93
2 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,6 @@
A curated list of awesome mathematics resources.
* [Awesome Math](#awesome-math)
* [General Resources](#general-resources)
* [Learning Platforms](#learning-platforms)
* [Questions and Answers](#questions-and-answers)
@ -324,3 +323,10 @@ A curated list of awesome mathematics resources.
* [Numerical Analysis](http://people.cs.uchicago.edu/~ridg/newna/nalrs.pdf) - L. Ridgway Scott
* [Lectures In Basic Computational Numerical Analysis](http://www.engr.uky.edu/~acfd/egr537-lctrs.pdf) - J. M. McDonough (University of Kentucky)
* [Advanced Numerical Methods and Their Applications to Industrial Problems: Adaptive Finite Element Methods](http://www.math.uni-bremen.de/~schmidt/SS04/YSU_Notes.pdf) - Alfred Schmidt, Arsen Narimanyan
## License
[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/)
To the extent possible under law, [Cyrille Rossant](http://cyrille.rossant.net) has waived all copyright and related or neighboring rights to this work.

View File

@ -55,6 +55,8 @@ def gen_toc(filename):
with open(filename, 'w') as f:
f.write(md[:i] + _NEWLINES)
for item in _gen_items(md):
if 'Awesome Math' in item:
continue
f.write(item + '\n')
f.write(_NEWLINES + md[j:])