Difference between revisions of "Scratchpad"

From Family History Book
Line 25: Line 25:
 
     print("Match")
 
     print("Match")
 
</pre>
 
</pre>
* More information about formatting posts in Discord is here: https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline- (edited)
+
* More information about formatting posts in Discord is here: https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-
February 2, 2023
 
NEW
 

Revision as of 11:07, 10 May 2023


Back to Private


Wio Terminal Links

Discord Tips

  • To include some code in your post, surround the code in single backticks (`) for inline code, or triple backticks for a block of code.
  • You can add an optional language marker to get syntax highlighting for that language. Common markers are py, c, and sh.
`​`​`py
# Check for equals.
if a == b:
    print("Match")
`​`​`
becomes:
# Check for equals.
if a == b:
    print("Match")