Starting off
in Posts on Example, Test, First
This is my first blog post, as a test
I’m just a basic first try at producing a page really. Not used markup before so it’ll be a slight learning curve!
I’m assuming this is some kind of sub-paragraph? Or bullet
- These
- Are
- Definitely
- Bullets
I am a test link I am a different test anchor
https://hydejack.com/docs/writing/
I am a string = Class.test
# This is some Python code
x = 3+2
print(x*3)
- Am
- I
- Indented?
- And
- Ordered?
- I
This is a book
:bowtie: Here’s a handy emoji cheat sheet \[\begin{aligned} x^2 + 3x + 2 = (x+2)(x+1)\\ This\;is\;some^{pretty}_{maths}\therefore\theta \end{aligned}\]
And this is some pretty python
import matplotlib.pyplot as plt
x = list(range(-100,100))
y = [i**3-2*i**2+i-1 for i in x]
plt.plot(x,y)
[<matplotlib.lines.Line2D at 0x2a91f609780>]