Hello World
A description of the article
This is the first paragraph of the article. Test a long — dash -- here it is.
Test for owner's possessive. Test for "quoting a passage." And another sentence. Or two.
Here's a test of an inline equation c = a^2 + b^2.
c = \pm\sqrt{a^2 + b^2}
We can also cite external publications. We should also be testing footnotesThis will become a hoverable footnote..
| First | Second | Third |
| 23 | 654 | 23 |
| 14 | 54 | 34 |
| 234 | 54 | 23 |
Here's a javascript code block.
var x = 25;
function(x){
return x * x;
}
We also support python.
# Python 3: Fibonacci series up to n
def fib(n):
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b