To use this language, use the class "language-coffeescript".
# This is a comment
### This is a
multi-line comment###
'foo \'bar\' baz'
"foo \"bar\" baz"
'Multi-line
strings are supported'
"Multi-line
strings are supported"
''' 'Block strings'
are supported too'''
""" "Block strings"
are supported too"""
"String #{interpolation} is supported"
'This works #{only} between double-quoted strings'
kids =
brother:
name: "Max"
age: 11
sister:
name: "Ida"
age: 9
/normal [r]egexp?/;
/// ^(
mul\t[i-l]ine
regexp # with embedded comment
) ///
class Animal
constructor: (@name) ->
move: (meters) ->
alert @name + " moved #{meters}m."
class Snake extends Animal
move: ->
alert "Slithering..."
super 5
class Horse extends Animal
move: ->
alert "Galloping..."
super 45
sam = new Snake "Sammy the Python"
tom = new Horse "Tommy the Palomino"
sam.move()
tom.move()
`alert("foo")`
There are certain edge cases where Prism will fail. There are always such cases in every regex-based syntax highlighter. However, Prism dares to be open and honest about them. If a failure is listed here, it doesn’t mean it will never be fixed. This is more of a “known bugs” list, just with a certain type of bug.
"foo # bar";