Roberto Alsina
Roberto Alsina
- [x] I am on the [latest](https://github.com/vercel/hyper/releases/latest) Hyper.app version - [x] I have searched the [issues](https://github.com/vercel/hyper/issues) of this repo and believe that this is not a duplicate - **Arch Linux...
Adds a new MULTILINE_ONLY flag to regexes. I created an issue here: https://github.com/crystal-lang/crystal/issues/14869 As discussed here: https://forum.crystal-lang.org/t/regex-that-is-multiline-but-not-dotall-how/7054/12
## Bug Report The expected behaviour when using a `MULTILINE` regex like `#.*$` is that it will match a whole line that begins with `#` Because crystal conflates `MULTILINE` and...
Having Tokens inherit Array(String) was breaking unrelated code because of https://github.com/crystal-lang/crystal/issues/11734 This PR removes the inheritance and replaces it with composition and usage of the delegate macro
This may not be a perfect fix but at least it makes the behaviour more predictable. Without this, what files get baked into the binary depends on the path where...
I don't think this is part of any spec but it sure is handy. If I were to do it (which I may 🤣 ) I would make it behave...
This PR contains the beginnings of footnotes implementation: * Only supports footnotes with a single reference (should support multiple) * Footnote definitions only allow inline elements (should allow blocks) *...
I have implemented a couple of alternative renderers, specifically: * markdown -> terminal * markdown -> markdown I have code that should make it trivial to write a couple more...