diff --git a/.gitignore b/.gitignore index fe4ded99..57dc24d9 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,9 @@ public/ # nodejs package-lock.json -node_modules/ \ No newline at end of file +node_modules/ + +# AI DEV Tools +*.mcp +.mcp.json +.env \ No newline at end of file diff --git a/go.mod b/go.mod index 261ca841..84b0af24 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/nephio-project/docs -go 1.18 +go 1.24 require ( - github.com/google/docsy v0.10.0 // indirect + github.com/google/docsy v0.12.0 // indirect github.com/google/docsy/dependencies v0.7.2 // indirect ) diff --git a/go.sum b/go.sum index 51663a2a..e69de29b 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +0,0 @@ -github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY= -github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc= -github.com/google/docsy v0.10.0 h1:6tMDacPwAyRWNCfvsn/9qGOZDQ8b0aRzjRZvnZPY5dg= -github.com/google/docsy v0.10.0/go.mod h1:c0nIAqmRTOuJ01F85U/wJPQtc3Zj9N58Kea9bOT2AJc= -github.com/google/docsy/dependencies v0.7.1/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4= -github.com/google/docsy/dependencies v0.7.2 h1:+t5ufoADQAj4XneFphz4A+UU0ICAxmNaRHVWtMYXPSI= -github.com/google/docsy/dependencies v0.7.2/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4= -github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= -github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= diff --git a/layouts/_default/_markup/render-heading.html b/layouts/_default/_markup/render-heading.html index d8326e6a..611e120a 100644 --- a/layouts/_default/_markup/render-heading.html +++ b/layouts/_default/_markup/render-heading.html @@ -1 +1 @@ -{{ template "_default/_markup/td-render-heading.html" . }} \ No newline at end of file +{{ .Text | safeHTML }} \ No newline at end of file diff --git a/netlify.toml b/netlify.toml index 2a8b500f..d769258b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -6,8 +6,8 @@ command = "hugo" publish = "public" [build.environment] -GO_VERSION = "1.18.1" -HUGO_VERSION = "v0.120.4" +GO_VERSION = "1.24.5" +HUGO_VERSION = "v0.148.2" HUGO_ENV = "production" [context.production] diff --git a/package.json b/package.json index b7b26227..cd769bae 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,21 @@ { - "name": "nephio-rpoject-docs", + "name": "nephio-project-docs", "version": "1.0.0", - "description": "", + "description": "Documentation website for Nephio - Kubernetes-based cloud-native network automation platform", "main": "postcss.config.js", "scripts": { + "build": "hugo --gc --minify", + "serve": "hugo server -D", + "lint": "echo \"No linting configured\" && exit 0", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/nephio-project/docs.git" }, - "keywords": [], + "keywords": ["nephio", "kubernetes", "documentation", "cloud-native", "network-automation", "5g", "hugo", "docsy"], "author": "Gergely Csatari ", - "license": "APACHE2", + "license": "CC-BY-4.0", "bugs": { "url": "https://github.com/nephio-project/docs/issues" },