📝 Updated nvim, added sample TEST_README.md
This commit is contained in:
parent
7f6fce9389
commit
e1f2139f9e
4 changed files with 69 additions and 2 deletions
BIN
Pictures/leaves_avvy.jpg
Normal file
BIN
Pictures/leaves_avvy.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 95 KiB |
64
TEST_README.md
Normal file
64
TEST_README.md
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# H1 Heading 1
|
||||
## H2 Heading 2
|
||||
### H3 Heading 3
|
||||
|
||||
**bold text**
|
||||
|
||||
__also bold text__
|
||||
|
||||
*italicized text*
|
||||
|
||||
_also italicized text_
|
||||
|
||||
>blockquote
|
||||
|
||||
1. First item of Ordered List
|
||||
2. Second item of Ordered List
|
||||
3. Third item of Ordered List
|
||||
|
||||
- First item of Unordered List
|
||||
- Second item of Unordered List
|
||||
- Third item of Unordered List
|
||||
|
||||
`code block`
|
||||
|
||||
---
|
||||
|
||||
[title](https://www.example.com)
|
||||
|
||||
<!-- this works, local files just won't load in markdown preview for some reason:-->
|
||||

|
||||
|
||||
<!-- This works but is commented out for now -->
|
||||
<!--  -->
|
||||
|
||||
| Syntax | Description |
|
||||
| ----------- | ----------- |
|
||||
| Header | Title |
|
||||
| Paragraph | Text |
|
||||
|
||||
``
|
||||
{
|
||||
"firstName: "John",
|
||||
"lastName": "Smith"
|
||||
"age": 25
|
||||
}
|
||||
``
|
||||
|
||||
Here's a sentence with a footnote. [^1]
|
||||
|
||||
[^1]: This is the footnote
|
||||
|
||||
### My Great Heading {#custom-id}
|
||||
|
||||
term
|
||||
: definition
|
||||
|
||||
~~The world is flat~~
|
||||
|
||||
- [x] Write the press release
|
||||
- [ ] Update the website
|
||||
- [ ] Contact the media
|
||||
|
||||
That is so funny! :joy:
|
||||
|
||||
BIN
image.jpg
Normal file
BIN
image.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 95 KiB |
|
|
@ -14,6 +14,9 @@ add notation about using pick to parse through output, and pipe that using xargs
|
|||
example:
|
||||
ls | pick | xargs bat # will give you a choice of the files from ls, pick displays a menu to "pick" the file, which then is parsed to xargs bat (invokes bat on choice from ls | pick)
|
||||
|
||||
for now, occassionally study and implement trivial C programs that demonstrate these algorithms:
|
||||
|
||||
https://medium.com/techie-delight/top-25-algorithms-every-programmer-should-know-373246b4881b
|
||||
|
||||
neovim markdown-preview fix:
|
||||
|
||||
:call mkdp#util#install()
|
||||
:TSUpdate all
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue