2014-09-24 05:52:36 +08:00
|
|
|
<% _(symbolizers).each(function(symbolizer, name) { %>
|
|
|
|
<% if (name == '*') { %>## All elements<% } else { %>## <%= name %><% } %>
|
|
|
|
<% _(symbolizer).chain().filter(function(p) { return p.css; }).each(function(p) { %>
|
2014-09-24 06:19:02 +08:00
|
|
|
#### <%= p.css.replace(/\s/g, '') %> <% if (_.isArray(p.type)) { %>`keyword`<% } else { %>`<%= p.type %>`<% } %>
|
|
|
|
<% if (_.isArray(p.type)) { %><% _(p.type).each(function(type) { %>`<%= type %>`<% }); %><% } %>
|
2014-09-24 06:45:55 +08:00
|
|
|
|
2014-09-24 05:52:36 +08:00
|
|
|
<% if (typeof p['default-value'] !== '') { %>Default Value: <%= p['default-value'] %><% } %>
|
2014-09-24 06:19:02 +08:00
|
|
|
<% if (p['default-meaning']) { %>_(<%- p['default-meaning'] %>)_<% } %>
|
2014-09-24 05:52:36 +08:00
|
|
|
<% if (typeof p['range'] !== 'undefined') { %>Range: <%= '' + p['range'] %><% } %>
|
|
|
|
<% if (p.doc) { %><%- p.doc%><% } %>
|
2014-09-24 06:52:24 +08:00
|
|
|
* * *
|
2014-09-24 05:52:36 +08:00
|
|
|
<% }); %>
|
|
|
|
<% }); %>
|