Beni Cherniavsky-Paskin
Beni Cherniavsky-Paskin
pandoc-as-a-service does support specifying custom markdown extensions :-) ``` $ curl -H "Content-Type: text/markdown_github-blank_before_header+tex_math_dollars+tex_math_single_backslash" -X POST http://pandoc-as-a-service.com/html -d ' foo # header $math^2$ ' foo header math2 ```
- [ ] Whatever I use, I'll want to run my own instance for privacy of doc content.
Similar issue with header after link target: ``` ... [1]: http://example.com # Header ```
Correction: markdown clearly allows header inside quote: ``` > # Header? ``` http://johnmacfarlane.net/babelmark2/?normalize=1&text=%3E+%23+Header%3F So the "lazy continuation" case may not be a CM bug. Similar results with lazy list: http://johnmacfarlane.net/babelmark2/?normalize=1&text=-+lazy%0Alist%0A%23+Header%3F...
- [ ] Format leading whitespace inside quotes in monospace - [ ] Recognize lists inside quotes (missing in markdown.js?) And while not formatting-related: - [ ] Continue quotes (and...
Also, for documents starting with a title, maintain URL synced to text of title. That way most doc URLs will be of self-describing `xyz#readable-title` form.
Implemented and url sync (from first line) in 9cbd175b68f96428e82b368f38559619dc74a9db. Should carefully verify markdown slug compatibility.
My first instinct was to set CodeMirror's readOnly option until firepad initializes. But then you can't write anything offline until you connect to firebase. (There are other problems with working...
plan: take the read-only-until-loaded fix for now, leave offline for later (missing feature is better than bug)
Jasmine and/or Sauce Labs are giving me grief :-( In at least half tests I run, Sauce Labs says it didn't receive ANY commands after creating the browser. Eventually Sauce...