Skip to content

Commit

Permalink
Use dict specific table construction functions
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed Sep 26, 2023
1 parent fcaddb6 commit 4eb779a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dicts/DictionarySources.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,22 @@ The [maturity levels](../MaturityClassification.md) are *production, beta, alpha
<script src="/assets/js/langtable.js"></script>
<script>
const domProdLangs = document.querySelector('#prod_languges');
domProdLangs.appendChild(addRepoTable({{lang_repos}}, 'dict-', ['maturity-prod']))
domProdLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-prod']))
</script>

<script>
const domBetaLangs = document.querySelector('#beta_languges');
domBetaLangs.appendChild(addRepoTable({{lang_repos}}, 'dict-', ['maturity-beta']))
domBetaLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-beta']))
</script>

<script>
const domAlphaLangs = document.querySelector('#alpha_languges');
domAlphaLangs.appendChild(addRepoTable({{lang_repos}}, 'dict-', ['maturity-alpha']))
domAlphaLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-alpha']))
</script>

<script>
const domExperLangs = document.querySelector('#exper_languges');
domExperLangs.appendChild(addRepoTable({{lang_repos}}, 'dict-', ['maturity-exper']))
domExperLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-exper']))
</script>

<script>
Expand Down

0 comments on commit 4eb779a

Please sign in to comment.