My solutions to Tao's Analysis I, formalized in Lean
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #264 from ldct/ldct-wavy

Disable wavy red underline for errors

authored by

teorth and committed by
GitHub
5ec85a4b 3a881d01

+7 -2
+6 -1
book/static_files/style.css
··· 58 58 padding-bottom: 1em; 59 59 margin-top: 1em; 60 60 margin-bottom: 1em; 61 - } 61 + } 62 + 63 + /* HACK: disable wavy red underline for errors, because they are quite common in docstrings */ 64 + .hl.lean .has-info.error :not(.tactic-state):not(.tactic-state *) { 65 + text-decoration: none !important; 66 + }
+1 -1
serve.py
··· 23 23 PORT = 8000 24 24 handler = CustomHTTPRequestHandler 25 25 with HTTPServer(("", PORT), handler) as httpd: 26 - print(f"Serving at http://localhost:{PORT}/analysis") 26 + print(f"Serving at http://localhost:{PORT}/analysis/") 27 27 print(f"/analysis: {BOOK_SITE}") 28 28 print(f"/analysis/docs: {DOCS_SITE}") 29 29 httpd.serve_forever()