To open markdown split-screen with preview:
Bold text requires use of astrics
Adding an emoij 😂
These words are ==super important==. Here is a quote:
blockquote.
Here is some code:
def color_converter(red, green, blue):
hex_r = number_to_hex_string(red)
hex_g = number_to_hex_string(green)
hex_b = number_to_hex_string(blue)
print("#" + hex_r + hex_g + hex_b)
return #+hex_r+hex_g+hex_b
def number_to_hex_string(num):
prefix = '0x'
hex_string = hex(num)
if hex_string.startswith(prefix):
hex_string = hex_string[len(prefix):]
if len(hex_string) < 2:
hex_string = '0' + hex_string
return hex_string.upper()
color_converter(100,50,5)'
Notes from Adie Meeting today, 2/14/22:
- Use markdown for notes and push to git
- Pay attention when learning about git and github
- Don't get behind!
- Make friends & help eachother.
Article talking about how to push notes from VSCode to git:
other recommended programs for markdown notes
Here's a sentence with a footnote. 1
My-Do List:
~ Learn markdown~
Take notes
Learn to push to github
Footnotes
-
This is the footnote. ↩