MyriaCore
MyriaCore
Is there a reason this hasn't been merged? tryone144's fork is pretty well used AFAIK, which is kinda not great since it proliferates competing mirrors of the same software.
we might not have to do a full redesign. I'm sure there are ways of detecting if a region is rectangular or not. I'm simply proposing we keep all the...
This might be more widespread than I thought, because I'm just now realizing that list bullets fail to syntax-highlight entirely when placed in blockquotes, implying that they're no longer even...
Looking at the code, it looks like a change would need to be made to `markdown-regex-list`? Not sure if this would break other stuff though. https://github.com/jrblevin/markdown-mode/blob/cf6403186119cd3d25adc702845f969071060e20/markdown-mode.el#L751-L761
`list-marker` is defined here: https://github.com/jrblevin/markdown-mode/blob/cf6403186119cd3d25adc702845f969071060e20/markdown-mode.el#L601-L613 So maybe even just modifying this would work? Something like: ```lisp (list-marker . ,(rx (or (and (one-or-more (any "0-9#")) ".") (any ">*+:-")))) ```
Yep, I probably should've made a new issue to begin with, sorry!
Hey, so I'm trying to design a rule application system to get around this issue, and I encountered the same issue, even though the rule only ever recursively calls itself,...
Wow, thanks for the quick response! I thought I was just doing something wrong. Is there a workaround for the time being?
Alright, that seems to work. Thanks! ```clojure (d/q '[:find ?int :in ?intersection :where [(?intersection #{:a :b :c} #{:c :d :e}) ?int]] clojure.set/intersection)) ;; => #{[#{:c}]} (d/q '[:find ?int :in %...
Sounds a lot like [this filter](https://github.com/Zaharid/pandoc_static_katex)!