Skip to content

Commit 933536b

Browse files
Update Hugo, Docsy, and Node packages (#11237)
* chore: hugo update * Package update for hugo, docsy and node * updating the documentation readme pills to reflect dependency versions * fix comment about docsy affecting h2
1 parent d05683d commit 933536b

14 files changed

Lines changed: 190 additions & 1523 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- 20.9 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version )
3+
- 24.15 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version )
44
arch: amd64 # optional, this is default, routes to a full VM
55
# arch: arm64 # this is the recommended LXD container - faster spin up but some limitations Not used as it seems very unstable.
66
os: linux # optional, this is default

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Mendix Documentation [![hugo_badge](https://img.shields.io/badge/hugo-0.126.1-green.svg)](https://gohugo.io/) [![node_badge](https://img.shields.io/badge/node-20.9.0-green.svg)](https://nodejs.org/en/) [![docsy_badge](https://img.shields.io/badge/docsy-0.10.0-green.svg)](https://www.docsy.dev/)
1+
# Mendix Documentation [![hugo_badge](https://img.shields.io/badge/hugo-0.156.0-green.svg)](https://gohugo.io/) [![node_badge](https://img.shields.io/badge/node-24.15.0-green.svg)](https://nodejs.org/en/) [![docsy_badge](https://img.shields.io/badge/docsy-0.15.0-green.svg)](https://www.docsy.dev/)
22

33
This repository contains the Mendix documentation, which is served on [https://docs.mendix.com](https://docs.mendix.com).
44

55
Build status:
66

7-
* production [![Build Status](https://secure.travis-ci.org/mendix/docs.png?branch=production)](https://app.travis-ci.com/github/mendix/docs)
8-
* development [![Build Status](https://secure.travis-ci.org/mendix/docs.png?branch=development)](https://app.travis-ci.com/github/mendix/docs)
7+
* production [![Build Status](https://app.travis-ci.com/mendix/docs.svg?branch=production)](https://app.travis-ci.com/github/mendix/docs)
8+
* development [![Build Status](https://app.travis-ci.com/mendix/docs.svg?branch=development)](https://app.travis-ci.com/github/mendix/docs)
99

1010
## Contribute
1111

assets/scss/_styles_project.scss

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
max-width: 90%; // NK - fixed width of all content to 90%
8989

9090
p, li, td {
91-
font-weight: $font-weight-body-text;
91+
font-weight: $td-font-weight-body-text;
9292
}
9393

9494
// NK - custom additions for margin styling in lists
@@ -339,16 +339,23 @@ img {
339339
// Hugo's ToC is a mouthful, this can be used to style the top level h2 entries.
340340
> ul > li > ul > li > a {}
341341

342+
// Override Docsy 0.15+ which makes ToC bold by default
343+
> ul > li > :not(ul) {
344+
font-weight: $font-weight-normal;
345+
}
346+
342347
a {
343348
// NK - styling for ToC
344349
color: $gray-800;
345350
padding-left: 20px;
346351
padding-bottom: .25rem;
347352
padding-top: .25rem;
348353

349-
&:hover {
354+
&:hover,
355+
&:focus {
350356
color: $link-hover-color;
351357
text-decoration: underline;
358+
background-color: transparent; // Override Docsy 0.15+ hover background
352359
}
353360
}
354361

@@ -409,6 +416,7 @@ img {
409416

410417
.td-sidebar {
411418
@include media-breakpoint-up(md) {
419+
margin-top: 0; // Olu - removed docsy margin to align sidebar to top of page
412420
padding-top: 5.25rem; // DB – aligns with .td-main main padding-top
413421
background-color: $td-sidebar-bg-color;
414422
padding-right: 1rem;

config/_default/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ disableKinds = ["taxonomy", "term"]
5959
startLevel = 2
6060

6161
[module]
62-
replacements = "github.com/FortAwesome/Font-Awesome -> ., github.com/twbs/bootstrap -> ."
62+
replacements = "github.com/FortAwesome/Font-Awesome -> @fortawesome/fontawesome-free, github.com/twbs/bootstrap -> bootstrap"
6363

6464
# Comment out if you don't want the "print entire section" link enabled.
6565
[outputs]

content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/use-call-rest-action-in-microflow.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Use Call REST Service Action in a Microflow"
33
url: /refguide/integration/use-call-rest-action-in-microflow/
44
weight: 15
55
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
6-
description: "Describes how to get information from a REST service."
76
aliases:
87
- /howto/integration/consume-a-rest-service/
98
---

content/en/docs/refguide/modeling/pages/image-and-file-widgets/image-uploader.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "Image Uploader"
33
url: /refguide/image-uploader/
44
weight: 50
5-
weight: 50
65
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
76
---
87

content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/use-call-rest-action-in-microflow.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Use Call REST Service Action in a Microflow"
33
url: /refguide10/integration/use-call-rest-action-in-microflow/
44
weight: 15
55
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
6-
description: "Describes how to get information from a REST service."
76
aliases:
87
- /howto10/integration/consume-a-rest-service/
98
---

content/en/docs/refguide10/modeling/pages/image-and-file-widgets/image-uploader.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "Image Uploader"
33
url: /refguide10/image-uploader/
44
weight: 50
5-
weight: 50
65
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
76
---
87

content/en/docs/refguide9/modeling/integration/rest-services/consumed-rest-services/consume-a-rest-service.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "Consume a REST Service"
33
url: /refguide9/integration/consume-a-rest-service/
44
weight: 9
5-
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
65
description: "Describes how to get information from a REST service."
76
aliases:
87
- /howto9/integration/consume-a-rest-service/

content/en/docs/refguide9/modeling/pages/image-and-file-widgets/image-uploader.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "Image Uploader"
33
url: /refguide9/image-uploader/
44
weight: 50
5-
weight: 50
65
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
76
---
87

0 commit comments

Comments
 (0)