Text Features
I have seen many posts where people use bold text or large text, but I don't know how to use these features. Can anyone help me?
Voters
SamKunefeh
WOW Thanks for the help guys!
Coder100
Hi!! That is something called markdown.
# header ## header ### header #### header ##### header ###### header **bold text** *italic* ~~strikethrough~~ ~~***can be combined***~~ - Lists - Lists - Lists and also `code` [links](URL here) ) > blockquote *** horizontal rule
` `` code
displays:
code
```md ` ``js for (let i = 0; i < 50; i ++) { // formatted code! }
displays: ```js for (let i = 0; i < 50; i ++) { // formatted code! }
Bookie0
Crash course in markdown
use hashtags for bigger text:
# hi
hi
###### hi
hi
**text**
text
_text_
text
- 1 - 2 - 3
- 1
- 2
- 3
***
(line)
go to the here for more: https://repl.it/talk/learn/A-Quick-Guide-to-Replit-Talk-Markdown/7448
Happy coding and hope this helps! =)