Johnny Ruiz
Johnny Ruiz
This patch adds support for EDoc verbatim quoting for Erlang comments.
## Expected behavior Smartparens should pair a backquote `` ` `` with a single quote `'` inside erlang comments to support [EDoc verbatim quoting](https://www.erlang.org/doc/apps/edoc/chapter.html#verbatim-quoting). ## Actual behavior Smartparens pairs backquote...
Sinatra allows matching against splat or wildcard parameters. Per their docs: ```ruby get '/say/*/to/*' do # matches /say/hello/to/world params['splat'] # => ["hello", "world"] end get '/download/*.*' do # matches /download/path/to/file.xml...