105 | <% sections.forEach(article => { %> 106 |
107 |

<%= article.title %>

108 | 109 |
110 |
111 | <% article.sections.forEach(section => { %> 112 | 113 | <% if (section.break) { %> 114 |
115 | <% } %> 116 | 117 |
118 |

<%= section.title %>

119 | 120 |
    121 | <% section.items.forEach(item => { %> 122 | 123 | <% 124 | let itemClass = `v${item.from.replace('.', '-')} ${item.doc.replace('.', '-')}`; 125 | 126 | if (item.deprecated) { 127 | itemClass += ` v${item.deprecated.replace('.', '-')}-d`; 128 | } 129 | 130 | if (item.removed) { 131 | itemClass += ` v${item.removed.replace('.', '-')}-r`; 132 | } 133 | %> 134 | 135 |
  • 136 | 140 | <%= item.text %> 141 | 142 |
  • 143 | <% }) %> 144 |
145 |
146 | <% }) %> 147 |
148 |
149 |
150 | <% }) %> 151 |