Markdown Test: Difference between revisions

From ourResearch
No edit summary
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
__TOC__
__TOC__
<math>
O(n\log{n})
</math>


<markdown>
<markdown>
## Emphasis
[toc]
 
**This is bold text**
 
__This is bold text__
 
*This is italic text*
 
_This is italic text_
 
~~Strikethrough~~
 
|tag1|tag2|
|:-:|:-:|
|item1|items|
 
$O(n\log(n))$


$$
$$
Line 28: Line 8:
$$
$$


</markdown>
# I love meow
<math>Meow</math>


<math>
![waifu](https://hackmd.io/_uploads/BJ0AL68ZR.png)
O(n\log(n))
 
</math>
- [ ] undone
- [x] done checked


<syntaxhighlight lang="python" line="1">
```python
def quick_sort(arr):
def quick_sort(arr):
less = []
less = []
Line 44: Line 24:
else:
else:
pass
pass
</syntaxhighlight>
```
 
## Emphasis


<markdown>
**This is bold text**


# I love meow
__This is bold text__


![waifu](https://hackmd.io/_uploads/BJ0AL68ZR.png)
*This is italic text*


[ ] undone
_This is italic text_


[x] done
~~Strikethrough~~


```python
|tag1|tag2|
def quick_sort(arr):
|:-:|:-:|
less = []
|item1|items|
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
```


</markdown>
</markdown>

Latest revision as of 13:25, 27 April 2024

I love meow

waifu

  • undone
  • done checked
def quick_sort(arr):
    less = []
    pivot_list = []
    more = []
    if len(arr) <= 1:
        return arr
    else:
        pass

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

tag1 tag2
item1 items