I understood there are two ways to assign a weight for a content.
The first is “weight = 100”, and second is "tags_weight = 20"
http://gohugo.io/taxonomies/ordering/#ordering-content-within-taxonomies:561853832019df340acf603aaa8ed39a
Then, is there any way to assign weight for each taxonomy?
config.toml
[taxonomies]
tag = "tags"
[tags_weight]
go = 10
vim = 20
html/css = 30
layout/section/post.html
<h1>All Posts</h1>
{{ range $key, $taxonomy := .Site.Taxonomies.tags}} <!-- ByWeight !! -->
<h2> {{ $key }} </h2>
<ul class="list">
{{ range $taxonomy.Pages}}
{{ .Render "li" }}
{{ end }}
</ul>
{{ end }}