Introduction
2021-8-16 Less than 1 minute
# Introduction
Brief Synopsis with article link (opens new window)
State and answer questions in paragraph format
Markdown Guide
# Every file starts with a heading
# Subheadings are searchable
some plain text and a link: CodeWorks Academy (opens new window)
a line break uses three hyphens
below is an img
itallics, bold, bold-itallics
Here is a table
id | name | phone |
---|---|---|
10 | Jim | 111-222-3333 |
10 | Bob | 222-333-4444 |
10 | Joe | 333-444-5555 |
code blocks
Â
Â
function democode(){
// NOTE this is a comment
let message = 'this line is highlighted'
return message + '!'
}
const executed = democode() // also highlighted
1
2
3
4
5
6
7
2
3
4
5
6
7