Ciro Santilli (三西猴) OurBigBook.com sponsor me: cirosantilli.com/sponsor, opinions my own 2020冠状病毒审查 ,2020郝海东 ,2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 709大抓捕,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱<script>alert(1)</script>
                                            Ciro Santilli (三西猴) OurBigBook.com sponsor me: cirosantilli.com/sponsor, opinions my own 2020冠状病毒审查 ,2020郝海东 ,2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 709大抓捕,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱<script>alert(1)</script>
                                        
                                    Lol true: http://blog.codinghorror.com/standard-markdown-is-now-common-markdown/
Hmmm, `/` appears to be allowed in HTML5: https://stackoverflow.com/questions/70579/what-are-valid-values-for-the-id-attribute-in-html and I want to use them as a workaround for: https://github.com/asciidoctor/asciidoctor/issues/3148 If the user explicitly requests a given ID, wouldn't it...
Similar for allowing the ID to start with digits, appears legal in HTML5. Also found this related ticket now: https://github.com/asciidoctor/asciidoctor/issues/3307
Cool, thanks for mentioning the workaround Dan, I didn't know that one.
Thanks for looking into this! Yes, definitely, I understand that all those decisions are hard to make. I wonder if anything would break if we just forbade the `]` character.
@mojavelinux ah thanks, I hadn't seen that one. After a quick look, basically, the only thing they can be doing fundamentally significantly better is using https://github.com/glebm/katex-ruby which uses https://github.com/rails/execjs to...
**Benchmarks** I did a benchmark as follows: ``` # N equations. n=1000 # asciidoctor-katex: asciidoctor 0.2.10, asciidoctor-katex 0.3.0, [email protected] (printf '= bla\n:stem:\n:docinfo: shared\n\n'; i=0; while [ $i -lt $n ];...
Yes, this is definitely unsafe only stuff, I'm considering it for GitHub pages. Although at this speed, I wouldn't even bother supporting it... it would make the dev cycle unbearable....
Dan, I've updated [the benchmark comment](https://github.com/asciidoctor/asciidoctor/pull/3338#issuecomment-502045350) with new findings. As expected KaTeX slowness is only due to startup: once loaded renders are fast, so it is a "perf bug" on...
A quick progress report: At https://github.com/cirosantilli/cirosantilli.github.io/blob/fd11b321c5e4075509db2c4d52249c94d90040bd/katex.rb I have pushed the plugin as far as I can go without solving "possibly not easy upstream questions" mentioned in the TODO part of...