Text Styles in Markdown
This is a regular paragraph of text.
Header 1
Header 2
Header 3
Text Styles
Texto en cursiva
Texto en negrita
Texto en cursiva y negrita
Lists
Ordered List
- Item 1
- Item 2
- Item 3
Unordered List
- Item A
- Item B
- Subitem B.1
- Subitem B.2
Links
Images
Blockquotes
This is a blockquote.
Code
Inline Code
const formatDate = (date: string) => {
const options: Intl.DateTimeFormatOptions = {
year: 'numeric',
month: 'long',
day: 'numeric'
};
return new Date(date).toLocaleDateString('en-US', options);
};
const formatDate = (date: string) => {
const options: Intl.DateTimeFormatOptions = {
year: 'numeric',
month: 'long',
day: 'numeric'
};
return new Date(date).toLocaleDateString('en-US', options);
};