https://github.com/richplastow/qik-test-2
https://github.com/richplastow/qik-test-2
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/richplastow/qik-test-2
- Owner: richplastow
- Created: 2016-12-22T12:09:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-23T23:23:00.000Z (over 8 years ago)
- Last Synced: 2025-01-06T01:10:50.611Z (5 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qik-test-2
## Just Indented
Here’s some standard JavaScript:
var abc = 123;
function foo () {
return 'bar!';
}And _here’s_ some ES6, with minimal punctuation:
const ABC = 456
let foo = arg => {
if (arg)
return 'ok!'
}- GitHub is able to style the markdown, but not the code
- Atom is able to highlight the markdown, but not the code
- Sublime 2 does a bad job of this - maybe an update is in order..?
- Visual Studio Code is able to highlight the markdown, but not the code## Fenced code blocks, labelled either 'js' or 'JavaScript'
```js
var abc = 123;
function foo () {
return 'bar!';
}
``````JavaScript
const ABC = 456
let foo = arg => {
if (arg)
return 'ok!'
}
```- GitHub highlights the code here
- Atom highlights the code here
- Sublime 2 does a bad job of this - maybe an update is in order..?
- Visual Studio Code understands 'js' but not 'JavaScript'