Skip to content

Commit

Permalink
Nu werken lokaal opgeslagen bibliografie verwijzingen ook.
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkoquak committed Jan 10, 2025
1 parent f499d31 commit 4154fbe
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
8 changes: 7 additions & 1 deletion ch02.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ Afbeeldingen krijgen een nummer en vermelding in de figurenlijst [[[#tof]]].

## Referenties

Referentie uit locale lijst [[SemVer]]. Lijst staat in `organisation-config.js`. Alleen referenties die in de tekst voorkomen worden getoond.
Referenties kunnen op drie plaatsen staan:

- In SpecRef [Specref](https://www.specref.org/)
- In de organisatie configuraties [[SemVer]]. Deze zijn te vinden op [tools.geostandaarden.nl](https://github.com/Geonovum/tools.geostandaarden.nl/blob/main/tools.geostandaarden.nl/respec/config/geonovum-config.js).
- In het document, zoals [[MIM12]]. Deze zijn te vinden in `js/config.js`.

Referentie uit organisatie lijst [[SemVer]] of de locale lijst [[MIM12]]. Lijst staat in `organisation-config.js`. Alleen referenties die in de tekst voorkomen worden getoond.

We gebruiken een <a>definitie</a> om een woord te omschrijven.

Expand Down
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
<script src="https://cdn.jsdelivr.net/gh/digitalbazaar/[email protected]/dist/main.js" class="remove"></script>
<script src="https://tools.geostandaarden.nl/respec/config/geonovum-config.js" class="remove"></script>
<script src="js/config.js" class="remove"></script>
<script class="remove"> respecConfig = {...organisationConfig, ...respecConfig}</script>
<script class="remove">
respecConfig.localBiblio = Object.assign(organisationConfig.localBiblio,respecConfig.localBiblio);
respecConfig = {...organisationConfig, ...respecConfig};
</script>
<script>document.title = respecConfig.title</script>
<title>TODO: Vul hier de titel in</title>
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico" />
Expand Down
15 changes: 15 additions & 0 deletions js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,19 @@ let respecConfig = {
uri: "template.pdf",
},
],
// Lokale lijst voor bibliografie
// - Kijk eerst naar de beschikbare www.specref.org .
// - Kijk daarna in de organisatieconfig.
// - Voeg dan pas hieronder toe.
localBiblio:
{
MIM12: {
id: "MIM12",
title: "MIM - Metamodel Informatie Modellering (Versie 1.2)",
href: "https://docs.geostandaarden.nl/mim/def-st-mim-20240613/",
status: "Definitief",
publisher: "Geonovum",
date: "2024-06-13"
}
}
};

0 comments on commit 4154fbe

Please sign in to comment.