Changes
Page history
some more formulas
authored
Dec 10, 2016
by
joha2
Show whitespace changes
Inline
Side-by-side
Home.md
View page @
fe96d3a6
...
...
@@ -11,6 +11,15 @@ For generating the encoded URL, please use the http://www.url-encode-decode.com/
But beware spaces get transformed into +, you need to substitute them by
`%20`
yourself.
Line breaks are possible to, just by inserting
`\\`
.
If you use python2 you may use the following code snipped
import urllib
urllib.quote(r'ds^2 = -c^2 dt^2 + dx^2 + dy^2 + dz^2\\ ds^2 = \eta_{\mu\nu} dx^\mu dx^\nu')
to get

## Unittests
Due to the growing complexity of the program we have to write some unittests for every functionality.
Use the following external helper sites to assist improvement of the code
...
...
...
...