mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
24 lines
780 B
Org Mode
24 lines
780 B
Org Mode
# -*- mode: org -*-
|
|
#+STARTUP: nofold
|
|
|
|
* Documentation
|
|
Redo tutorial?
|
|
Using helpers
|
|
haml_concat and haml_tag in particular
|
|
Syntax highlighting?
|
|
|
|
* Code
|
|
Keep track of error offsets everywhere
|
|
Use this to show error location in messages
|
|
** Haml
|
|
Support finer-grained HTML-escaping in filters
|
|
Speed
|
|
Make tags with dynamic attributes pre-render as much as possible
|
|
Including the attribute name where doable
|
|
:ugly + :html improvements
|
|
Ignore closing tags where we can
|
|
http://code.google.com/speed/articles/optimizing-html.html
|
|
Requires Haml parsing refactor
|
|
Don't quote attributes that don't require it
|
|
http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2
|
|
http://www.w3.org/TR/html5/syntax.html#attributes
|