main
 1# Calgary (YYC)
 2
 3| Sector | Name | Total | Male | Female | Non-binary |
 4| ------ | ---- | ----- | ---- | ------ | ---------- |
 5<%- self.sort.each do |community| -%>
 6| <%= community[:sector] %> | [<%= community.name %>][<%= community.name.parameterize %>] | <%= community[:res_cnt] %> | <%= community[:male_cnt] %> (<%= community.percent(:male_cnt) %>%) | <%= community[:female_cnt] %> (<%= community.percent(:female_cnt) %>%) | <%= community[:other_cnt] %> (<%= community.percent(:other_cnt) %>%) |
 7<%- end -%>
 8
 9<%- self.sort.each do |community| -%>
10[<%= community.name.parameterize %>]: ./<%= community[:comm_code].parameterize %>/README.md
11<%- end -%>