The Crystal programming language | http://crystal-lang.org | Fund Crystal's development: http://is.gd/X7PRtI | Docs: http://crystal-lang.org/docs/ | API: http://crystal-lang.org/api/
within a
...or <code>
</code> element.
inside of a
`
` or `\
or <code>`</code> correctly causing a cascading effect https://github.com/postmodern/chars.rb#features if i work around said issies, then i break commonmark or ruby's kramdown (which is pretty much bullet proof)
</code>" worked in kramdown, doesn't seem to work in
crystal doc`, so that seems like an issue
I've run into an issue where Crystal's Array#fill doesnt work the same as Ruby's (it doesnt allocate additional space, but throws an IndexError), but not sure if this is intentional.
a=[10]
a.fill(9,1,2)
Unhandled exception: Index out of bounds (IndexError)
Ruby returns [10,9,9]