2010-08-22 19:04:02 -04:00
|
|
|
# -*- mode: org -*-
|
2009-04-27 02:03:22 -04:00
|
|
|
#+STARTUP: nofold
|
2009-03-30 18:24:37 -04:00
|
|
|
|
2009-03-29 05:20:14 -04:00
|
|
|
* Documentation
|
|
|
|
Redo tutorial?
|
2009-07-19 18:49:12 -04:00
|
|
|
Using helpers
|
|
|
|
haml_concat and haml_tag in particular
|
2009-10-05 06:14:20 -04:00
|
|
|
Syntax highlighting?
|
2006-12-04 05:46:42 -05:00
|
|
|
|
2009-03-29 05:20:14 -04:00
|
|
|
* Code
|
2009-10-05 06:14:20 -04:00
|
|
|
Keep track of error offsets everywhere
|
2009-07-19 16:59:35 -04:00
|
|
|
Use this to show error location in messages
|
2009-03-29 05:20:14 -04:00
|
|
|
** Haml
|
2009-10-05 06:14:20 -04:00
|
|
|
Support finer-grained HTML-escaping in filters
|
2009-10-11 16:41:10 -04:00
|
|
|
Speed
|
|
|
|
Make tags with dynamic attributes pre-render as much as possible
|
|
|
|
Including the attribute name where doable
|
2009-10-05 06:14:20 -04:00
|
|
|
:ugly + :html improvements
|
2009-06-28 03:15:37 -04:00
|
|
|
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
|
2009-06-28 03:17:46 -04:00
|
|
|
http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2
|
|
|
|
http://www.w3.org/TR/html5/syntax.html#attributes
|