diff --git a/README.md b/README.md index cd81298..c8a07a0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/build_toc.py b/build_toc.py index 700d91c..4aa4ad9 100644 --- a/build_toc.py +++ b/build_toc.py @@ -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:])