Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,35 @@ Accounting made easy (course) with TurboCASH
contributers:
- Daniel Copeman
- Philip Copeman
- Leon Cooprasamy

Here are some simple markup examples.

# header
### smaller header

##Quick Markup tutorial
_Write in italics_

_"One chord is great, two chords is OK, three chords is Jazz"_ - **Lou Reed.**


make an lsit
- one
- two
- three


Text formating

`this is code formatted`
```javascript
var string = 'never use var to make a variable'
let newstring = 'let is much better than var'
console.log(`${string} then what: ${newstring}`)


// This is a comment
```