Highlights Examples

Select a theme below to see the code highlighted using that theme.

Highlights Examples
 
This is a Markdown file example with nested code blocks that are highlighted
properly when the language name is included in the fenced code block.
 
## CoffeeScript Example
 
```coffee
# This is a very important class
module.exports =
class Hello extends World
  constructor: (name) ->
    @label = "Hello #{name}!"
 
  log: ->
    console.log(@label)
```
 
## CSS Example
 
```css
.editor {
  border: red solid 1px;
}
```

Check out the atom/highlights repository for more details.