Make the GitBook URLs depend on DOC_URL

This commit is contained in:
gregoirenovel 2018-05-22 17:17:14 +02:00
parent 52d878fea8
commit b93ec30a2d

View file

@ -1,4 +1,4 @@
DOC_URL = "https://demarches-simplifiees.gitbook.io/demarches-simplifiees"
LISTE_DES_DEMARCHES_URL = "https://demarches-simplifiees.gitbook.io/demarches-simplifiees/listes-des-demarches"
CGU_URL = "https://demarches-simplifiees.gitbook.io/demarches-simplifiees/cgu"
MENTIONS_LEGALES_URL = "https://demarches-simplifiees.gitbook.io/demarches-simplifiees/cgu#4.-mentions-legales"
LISTE_DES_DEMARCHES_URL = [DOC_URL, "listes-des-demarches"].join("/")
CGU_URL = [DOC_URL, "cgu"].join("/")
MENTIONS_LEGALES_URL = [CGU_URL, "4.-mentions-legales"].join("#")