|
|
@ -7,8 +7,8 @@ |
|
|
|
"query": { |
|
|
|
"14": [ |
|
|
|
"(", |
|
|
|
"node[species~\"(Malus|Pyrus|Morus|Prunus persica|Prunus cerasus)\"];", |
|
|
|
"node[taxon~\"(Malus|Pyrus|Morus|Prunus persica|Prunus cerasus)\"];", |
|
|
|
"node[species~\"(Malus domestica|Pyrus domestica|Morus|Prunus persica|Prunus cerasus)\"];", |
|
|
|
"node[taxon~\"(Malus domestica|Pyrus domestica|Morus|Prunus persica|Prunus cerasus)\"];", |
|
|
|
");" |
|
|
|
] |
|
|
|
}, |
|
|
@ -44,35 +44,40 @@ |
|
|
|
"{% for data in const %}", |
|
|
|
" <tr>", |
|
|
|
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.icon }}</div></td>", |
|
|
|
" <td>{{ attribute(data, \"name:en\") }}</td>", |
|
|
|
" <td>{{ attribute(data, \"name:en\") }} - {{ data.name }}</td>", |
|
|
|
" </tr>", |
|
|
|
"{% endfor %}", |
|
|
|
"</table>" |
|
|
|
], |
|
|
|
"const": [ |
|
|
|
{ |
|
|
|
"match": "^Malus", |
|
|
|
"match": "^Malus domestica", |
|
|
|
"icon": "🍏", |
|
|
|
"name": "Malus domestica", |
|
|
|
"name:en": "Apple" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"match": "^Pyrus", |
|
|
|
"icon": "🍐", |
|
|
|
"name:en": "Pear" |
|
|
|
"name:en": "Pear", |
|
|
|
"name": "Pyrus domestica" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"match": "^Morus", |
|
|
|
"icon": "M", |
|
|
|
"name": "Morus", |
|
|
|
"name:en": "Mulberry" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"match": "^Prunus persica", |
|
|
|
"icon": "🍑", |
|
|
|
"name": "Prunus persica", |
|
|
|
"name:en": "Peach" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"match": "^Prunus cerasus", |
|
|
|
"icon": "🍒", |
|
|
|
"name": "Prunus cerasus", |
|
|
|
"name:en": "Cherry" |
|
|
|
} |
|
|
|
] |