... | @@ -11,6 +11,15 @@ For generating the encoded URL, please use the http://www.url-encode-decode.com/ |
... | @@ -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.
|
|
But beware spaces get transformed into +, you need to substitute them by `%20` yourself.
|
|
Line breaks are possible to, just by inserting `\\`.
|
|
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
|
|
## Unittests
|
|
Due to the growing complexity of the program we have to write some unittests for every functionality.
|
|
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
|
|
Use the following external helper sites to assist improvement of the code
|
... | | ... | |