hello world hi, this is hamza noweder
Sometimes it's useful to have different levels of headings to structure your documents. Start lines with a # to create headings. Multiple ## in a row denote smaller heading sizes.
You can use one # all the way up to ###### six for different heading sizes.
If you'd like to quote someone, use the > character before the line:
Coffee. The finest organic suspension ever devised... I beat the Borg with it.
- Captain Janeway
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
- Item 1
- Item 2
- Item 2a
- Item 2b
http://github.com - automatic! GitHub
As Kanye West said:
We're living the future so the present is our past.
I think you should use an
<addr> element here instead.
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
- @mentions, #refs, links, formatting, and
tagssupported - list syntax required (any unordered or ordered list supported)
- this is a complete item
- this is an incomplete item
| First Header | Second Header |
|---|---|
| Content from cell 1 | Content from cell 2 |
| Content in the first column | Content in the second column |
There are many different ways to style code with GitHub's markdown. If you have inline code blocks, wrap them in backticks: var example = true. If you've got a longer block of code, you can indent with four spaces:
if (isAwesome){
return true
}
GitHub also supports something called code fencing, which allows for multiple lines without indentation:
if (isAwesome){
return true
}
And if you'd like to use syntax highlighting, include the language:
if (isAwesome){
return true
}