strings = md`
### Javascript Strings
Strings are a series of characters surrounded by single quotes (_e.g._, 'hello') or double quotes (_e.g._, "hello"). If there is an embedded \" when using double-quotes, or an embedded \' when using single-quotes, you must use the backslash (\\) to quote the embedded character (see string_example2).
`