diff --git a/data/structures/accordion.yml b/data/structures/accordion.yml index 40dd2b24..dd2a6932 100644 --- a/data/structures/accordion.yml +++ b/data/structures/accordion.yml @@ -6,7 +6,7 @@ arguments: type: string optional: true comment: >- - ID of the accordion, defaults to “accordion-n” with a sequential number n. + ID of the accordion, defaults to `accordion-n` with a sequential number n. always-open: type: bool optional: true @@ -15,4 +15,4 @@ arguments: class: type: string optional: true - comment: Class attribute of the accordion, e.g. “w-50”. + comment: Class attribute of the accordion, e.g. `w-50`. diff --git a/data/structures/badge.yml b/data/structures/badge.yml index 308a542f..195044f0 100644 --- a/data/structures/badge.yml +++ b/data/structures/badge.yml @@ -3,7 +3,7 @@ comment: >- arguments: title: type: string - optional: true + optional: false comment: >- Title of the badge. class: diff --git a/data/structures/button.yml b/data/structures/button.yml index fc3bea6d..76fd7673 100644 --- a/data/structures/button.yml +++ b/data/structures/button.yml @@ -12,7 +12,7 @@ arguments: type: string optional: true comment: >- - Class attribute of the button element, e.g. “p-5”. + Class attribute of the button element, e.g. `p-5`. color: type: select optional: true @@ -48,7 +48,7 @@ arguments: id: type: string optional: true - comment: ID of the button, to be used in the DOM. + comment: Identifier of the button, to be used in the DOM. state: type: select optional: true @@ -61,7 +61,7 @@ arguments: - active - inactive size: - type: string + type: select optional: true default: md comment: Size of the button. @@ -85,7 +85,12 @@ arguments: comment: >- Assistive label for the button or badge. The label is applied to the badge instead of the button when a badge has been defined. - The default value of the button aria-label is its title. + The default value of the button's assistive label is its title. + aria-label: + type: string + optional: true + comment: Alias for label. + group: shortcode tooltip: type: string optional: true @@ -108,7 +113,7 @@ arguments: - link - button placement: - type: string + type: select optional: true default: top comment: Position of the tooltip. @@ -134,7 +139,7 @@ arguments: - first - last justify: - type: string + type: select optional: true default: center comment: Justification of the button title and icon. @@ -149,7 +154,7 @@ arguments: toast: type: string optional: true - comment: ID of the toast to display when the button is clicked. + comment: Identifier (ID) of the toast to display when the button is clicked. clipboard: type: - string @@ -174,6 +179,7 @@ arguments: comment: >- Dictionary of key-value pairs added as custom attributes to the button element (''). + group: partial spacing: type: bool optional: true diff --git a/data/structures/card-group.yml b/data/structures/card-group.yml index 790aca4b..18096332 100644 --- a/data/structures/card-group.yml +++ b/data/structures/card-group.yml @@ -11,11 +11,11 @@ arguments: - '*hugolib.pageForShortcode' optional: true comment: Context of the current page. + group: partial title: type: string optional: true - comment: >- - Title of the card, replaces the title of the referenced page (if any). + comment: Title of the card group. gutter: type: int optional: true @@ -24,20 +24,24 @@ arguments: options: min: 0 max: 5 + release: v0.19.0 list: type: - page.Pages - resource.Resources optional: true comment: Array of pages to be rendered as cards. + group: partial cards: type: string optional: true comment: String of rendered cards. + group: partial max: type: int optional: true comment: Maximum number of cards to display. + group: partial cols: type: select optional: true @@ -51,23 +55,27 @@ arguments: - "4" - "5" - "auto" + release: v0.19.0 paginate: type: bool optional: true comment: >- Flag indicating if pagination should be added to the card group, if the list exceeds the maximum number of cards to display. + group: partial href: type: string optional: true comment: >- - address for the button or hyperlink. If set, a button is added if the + Address for the button or hyperlink. If set, a button is added if the list exceeds the maximum number of cards to display. + group: partial hrefTitle: type: string optional: true comment: >- Title of the button or hyperlink as companion to href. + group: partial separator: type: bool optional: true diff --git a/data/structures/card.yml b/data/structures/card.yml index 870527ed..834f2624 100644 --- a/data/structures/card.yml +++ b/data/structures/card.yml @@ -108,15 +108,14 @@ arguments: - string - template.HTML optional: true - parent: cascade comment: >- Description of the card. group: partial loading: type: select optional: true - default: eager parent: cascade + default: eager comment: >- Loading behavior of the image. The loading of lazily loaded images is deferred until the image is within scrolling range of the viewport. This @@ -130,7 +129,6 @@ arguments: thumbnail: type: path optional: true - parent: cascade comment: >- Thumbnail image url, displayed on top or the left of the card. ratio: @@ -157,7 +155,6 @@ arguments: icon: type: string optional: true - parent: cascade comment: >- Font Awesome icon, displayed on top or the left of the card. orientation: diff --git a/data/structures/carousel-item.yml b/data/structures/carousel-item.yml index fa8097ff..5231bbf5 100644 --- a/data/structures/carousel-item.yml +++ b/data/structures/carousel-item.yml @@ -24,6 +24,7 @@ arguments: - 4x3 - 16x9 - 21x9 + group: partial portrait: type: bool optional: true @@ -32,6 +33,7 @@ arguments: Flag to adjust the ratio from landscape to portrait. The image itself is not rotated, only the crop area is adjusted. Not applicable to vector graphics. + group: partial loading: type: select default: eager diff --git a/data/structures/carousel.yml b/data/structures/carousel.yml index 4bb20a54..5b41177a 100644 --- a/data/structures/carousel.yml +++ b/data/structures/carousel.yml @@ -1,14 +1,14 @@ comment: >- Displays a carousel of several responsive images (see the image shortcode for - more details). Add inner elements to define individual image slides. + more details). Add inner `img` elements to define individual image slides. arguments: id: type: string optional: true comment: >- - ID of the carousel, defaults to `carousel-` with a sequential number. + ID of the carousel, defaults to `carousel-n` with a sequential number `n`. ratio: - type: string + type: select optional: true comment: >- Ratio of the images. If set, the images are resized and cropped to match the @@ -28,11 +28,12 @@ arguments: Flag to adjust the ratio from landscape to portrait. The images themselves are not rotated, only the crop area is adjusted. Not applicable to vector graphics. + release: v0.18.3 class: type: string optional: true - comment: Class attribute of the carousel element, e.g. “w-75”. + comment: Class attribute of the carousel element, e.g. `w-75`. body: type: string optional: false - comment: Inner elements that define the individual image slides. \ No newline at end of file + comment: Inner `img` elements that define the individual image slides. \ No newline at end of file diff --git a/data/structures/command.yml b/data/structures/command.yml index b04fa03e..8a2ebd23 100644 --- a/data/structures/command.yml +++ b/data/structures/command.yml @@ -18,7 +18,7 @@ arguments: type: select optional: true default: bash - comment: Type of shell + comment: Type of shell. options: values: - bash diff --git a/data/structures/docs.yml b/data/structures/docs.yml index d67fcec1..e3de323a 100644 --- a/data/structures/docs.yml +++ b/data/structures/docs.yml @@ -30,11 +30,15 @@ arguments: optional: true default: true comment: >- - If unset, shows the filename only. By default, the full relative path is - shown. + If unset, shows the filename only. By default, the entire path (relative + to the base path) is shown. id: type: string optional: true comment: >- ID of the collapse panel holding the code snippet, defaults to `docs-collapse-n` with a sequential number `n` starting at `1`. + class: + type: string + optional: true + comment: Class attribute of the tab control that wraps the docs element. diff --git a/data/structures/example.yml b/data/structures/example.yml index 69253dfe..c676280d 100644 --- a/data/structures/example.yml +++ b/data/structures/example.yml @@ -2,11 +2,17 @@ comment: >- Display a code example and render a preview of the same input. The shortcode accepts the languages supported by Hugo's highlight function. arguments: + id: + type: string + optional: true + comment: Identifier of the element’s container. lang: type: string optional: true default: markdown - comment: Language used to display the code. + comment: >- + Language used to display the code. Use `hugo` to process Hugo (escaped) + shortcodes. show_markup: type: bool optional: true diff --git a/data/structures/file.yml b/data/structures/file.yml index 145ea1a7..c70280e1 100644 --- a/data/structures/file.yml +++ b/data/structures/file.yml @@ -21,19 +21,20 @@ arguments: comment: >- If unset, shows the panel with the code in collapsed state. By default, the panel is expanded. - full: - type: string + full: + type: bool optional: true + default: true comment: >- - If unset, shows the filename only. By default, the full relative path is - shown. + If unset, shows the filename only. By default, the entire path (relative + to the base path) is shown. id: type: string optional: true comment: >- - ID of the collapse panel, defaults to `file-collapse-n` with a sequential - number `n` starting at 1. + Identifier of the collapse panel, defaults to `file-collapse-n` with a + sequential number `n` starting at 1. class: type: string optional: true - comment: Class argument of the tab control. + comment: Class attribute of the tab control that wraps the file element. diff --git a/data/structures/image.yml b/data/structures/image.yml index 8f797147..2ca39acb 100644 --- a/data/structures/image.yml +++ b/data/structures/image.yml @@ -21,7 +21,10 @@ arguments: url: type: string optional: true - comment: Path or url of the image, e.g. `img/example.jpg`. + comment: >- + Path or url of the image, e.g. `img/example.jpg`. Images with multiple + color modes are expected to have a basename that ends with either `-dark` + or `-light`. src: type: string optional: true @@ -39,9 +42,12 @@ arguments: type: bool default: false optional: true - comment: Flag indicating if the image should support color modes. + comment: >- + Flag indicating if the image should support color modes. If set, the + shortcode searches for images that having a matching color-mode suffix + such as `-light` or `-dark`. ratio: - type: string + type: select optional: true comment: >- Ratio of the image. If set, the image is resized and cropped to match the @@ -62,6 +68,7 @@ arguments: Flag to adjust the ratio from landscape to portrait. The image itself is not rotated, only the crop area is adjusted. Not applicable to vector graphics. + release: v0.18.3 loading: type: select default: eager @@ -75,6 +82,7 @@ arguments: values: - eager - lazy + release: v0.21.0 priority: type: select default: auto @@ -102,6 +110,7 @@ arguments: type: string optional: true comment: Class attributes of the wrapper element, e.g. `mx-auto`. + release: v0.18.3 class: type: string optional: true diff --git a/data/structures/link.yml b/data/structures/link.yml index 035ecf84..cf9b5927 100644 --- a/data/structures/link.yml +++ b/data/structures/link.yml @@ -25,8 +25,8 @@ arguments: position: 0 optional: true comment: >- - Reference to either an external link (if it starts with http), a named - link (if it can be found in params.links), or internal reference. + Reference to either an external link (if it starts with `http`), a named + link (if it can be found in `params.links`), or internal reference. Both external and internal references may include an anchor `#`. name: type: string diff --git a/data/structures/mark.yml b/data/structures/mark.yml index 4106bd37..2264fb44 100644 --- a/data/structures/mark.yml +++ b/data/structures/mark.yml @@ -9,7 +9,7 @@ arguments: optional: true comment: >- Theme color of the highlight. By default, the highlight uses the color of - the HTML mark function. + the HTML mark function (usually yellow). options: values: - primary diff --git a/data/structures/nav-item.yml b/data/structures/nav-item.yml index 810f8604..84f5a3a4 100644 --- a/data/structures/nav-item.yml +++ b/data/structures/nav-item.yml @@ -1,25 +1,25 @@ comment: >- - Defines an individual nav item. + Defines an individual item. arguments: id: type: string optional: true - comment: ID of the nav-item. - parent: cascade + comment: Identification of the item. + group: partial parentID: type: string optional: false - comment: ID of the parent (e.g. nav control). + comment: Identification of the parent (e.g. nav control). group: partial header: type: string optional: false - comment: Header of the nav item. + comment: Header of the item. show: type: bool optional: true comment: >- - Flag to indicate the nav item should be shown. Only one can be shown at a + Flag to indicate if the item should be shown. Only one can be shown at a time. disabled: type: bool @@ -33,13 +33,13 @@ arguments: class: type: string optional: true - comment: Class attribute of the nav item. + comment: Class attribute of the item. body: type: - string - template.HTML optional: true - comment: The body content of the nav-item, supports Markdown and HTML (if enabled). + comment: The body content of the item, supports Markdown and HTML (if enabled). group: partial item_type: type: select @@ -52,5 +52,5 @@ arguments: group: partial body: optional: false - comment: Content of the nav item. + comment: Content of the item. group: shortcode diff --git a/data/structures/nav.yml b/data/structures/nav.yml index b47abd99..d42d53d2 100644 --- a/data/structures/nav.yml +++ b/data/structures/nav.yml @@ -44,7 +44,7 @@ arguments: class: type: string optional: true - comment: Class attribute of the tab group, e.g. “nav-fill”. + comment: Class attribute of the tab group, e.g. `nav-fill`. pane: type: select optional: true diff --git a/data/structures/navbar.yml b/data/structures/navbar.yml index 20ac76ca..b3b3d416 100644 --- a/data/structures/navbar.yml +++ b/data/structures/navbar.yml @@ -28,7 +28,12 @@ arguments: color: type: select optional: true - comment: Background theme color of the navbar. + comment: >- + Background theme color of the navbar. Set the color to `body` or + `body-tertiary` for the navbar to respond to color mode changes (e.g. + switching between dark and light). The navigation bar is transparent when + no color is set, but is set to the body color when scrolling to enhance + the contrast. options: values: - primary @@ -47,9 +52,9 @@ arguments: type: string optional: true comment: >- - ID of the navbar, defaults to `navbar-0`. The id is used by several child - elements, including a color mode switcher, version switcher, and collapse - panel. + Identification of the navbar, defaults to `navbar-0`. The id is used by + several child elements, including a color mode switcher, version switcher, + and collapse panel. menus: type: string optional: true @@ -76,6 +81,7 @@ arguments: values: - light - dark + group: partial mode: type: bool optional: true diff --git a/data/structures/release.yml b/data/structures/release.yml index a596859c..2b9b2537 100644 --- a/data/structures/release.yml +++ b/data/structures/release.yml @@ -23,7 +23,7 @@ arguments: type: select optional: true default: md - comment: Size of the button + comment: Size of the button. options: values: - sm @@ -36,4 +36,5 @@ arguments: inline: type: bool optional: true - comment: Flag to render the release button inline (defaults to false). + default: false + comment: Flag to render the release button inline. diff --git a/data/structures/spinner.yml b/data/structures/spinner.yml index c0eb8380..c7e25a72 100644 --- a/data/structures/spinner.yml +++ b/data/structures/spinner.yml @@ -6,7 +6,7 @@ arguments: type: string optional: true comment: >- - Class attribute of the wrapping element, e.g. “text-center”. + Class attribute of the wrapping element, e.g. `text-center`. color: type: select optional: true diff --git a/data/structures/sub.yml b/data/structures/sub.yml index 6a0c4102..9cf16802 100644 --- a/data/structures/sub.yml +++ b/data/structures/sub.yml @@ -5,4 +5,4 @@ arguments: type: string optional: false position: 0 - comment: Text to display in subscript. + comment: Text to display in subscript. You can omit the argument name. diff --git a/data/structures/sup.yml b/data/structures/sup.yml index 093b95fb..47497782 100644 --- a/data/structures/sup.yml +++ b/data/structures/sup.yml @@ -5,4 +5,4 @@ arguments: type: string optional: false position: 0 - comment: Text to display in superscript. + comment: Text to display in superscript. You can omit the argument name. diff --git a/data/structures/youtube.yml b/data/structures/youtube.yml index 7b3f810d..7493826e 100644 --- a/data/structures/youtube.yml +++ b/data/structures/youtube.yml @@ -18,7 +18,7 @@ arguments: type: string optional: false position: 0 - comment: ID of the video to be embedded. + comment: Identifier of the video to be embedded. autoplay: type: bool optional: true diff --git a/exampleSite/hugo_stats.json b/exampleSite/hugo_stats.json index 2b8aefab..8fd7d681 100644 --- a/exampleSite/hugo_stats.json +++ b/exampleSite/hugo_stats.json @@ -19,7 +19,6 @@ "hr", "html", "i", - "iframe", "img", "input", "li", @@ -433,8 +432,7 @@ "visually-hidden", "vr", "w-100", - "w-50", - "youtube-embedded" + "w-50" ], "ids": [ "-theme", diff --git a/layouts/partials/assets/card-group.html b/layouts/partials/assets/card-group.html index 0b01644e..8ce44896 100644 --- a/layouts/partials/assets/card-group.html +++ b/layouts/partials/assets/card-group.html @@ -84,12 +84,13 @@ {{- $params := (dict "class" (printf "h-100 %s" $class) "color" $color - "padding" $padding - "header" $header "footer" $footer + "gutter" $gutter + "header" $header + "loading" $loading "orientation" $orientation + "padding" $padding "ratio" $ratio - "loading" $loading ) -}} {{- $params = merge $params $element }} diff --git a/layouts/partials/assets/navbar.html b/layouts/partials/assets/navbar.html index 09d71db0..c6372866 100644 --- a/layouts/partials/assets/navbar.html +++ b/layouts/partials/assets/navbar.html @@ -4,6 +4,8 @@ Visit gethinode.com/license for more details. --> + + {{ $error := false }} diff --git a/layouts/partials/assets/section-list.html b/layouts/partials/assets/section-list.html index 68503acf..dccc9c2d 100644 --- a/layouts/partials/assets/section-list.html +++ b/layouts/partials/assets/section-list.html @@ -148,8 +148,6 @@
{{- partial "assets/section-header.html" $params -}} - {{ warnf "[%s] vertical: %t" $page.Title $vertical}} - {{- $params := (dict "page" $page "list" $list @@ -161,10 +159,7 @@ {{- $partial = "assets/card-group.html" -}} {{- $params = merge $params (dict "title" $title - "icon" $icon - "thumbnail" $thumbnail "ratio" $ratio - "description" $description "color" $color "loading" $loading "max" $max diff --git a/layouts/shortcodes/alert.html b/layouts/shortcodes/alert.html index 40a31269..71fef7b7 100644 --- a/layouts/shortcodes/alert.html +++ b/layouts/shortcodes/alert.html @@ -16,7 +16,13 @@ {{ $color := .Get "color" | default "danger" -}} {{ $icon := .Get "icon" | default "" }} {{ $type := .Get "type" | default "" -}} -{{ if eq $type "danger" }}{{ $icon = "fas triangle-exclamation" }}{{ else if eq $type "info" }}{{ $icon = "fa lightbulb" }}{{ end }} +{{ if eq $type "danger" }} + {{ $icon = "fas triangle-exclamation" }} + {{ $color = "danger" }} +{{ else if eq $type "info" }} + {{ $icon = "fa lightbulb" }} + {{ $color = "info" }} +{{ end }} {{ with $icon }} {{ $icon = partial "assets/icon.html" (dict "icon" (printf "%s fa-2x fa-fw" .)) }} {{ end }} diff --git a/layouts/shortcodes/args.html b/layouts/shortcodes/args.html index 78e2cb8b..57908a44 100644 --- a/layouts/shortcodes/args.html +++ b/layouts/shortcodes/args.html @@ -63,16 +63,15 @@ {{ $max := "" }} {{ if and $val.options.values (eq $type "select") }} {{ $comment = printf "%s %s: [%s]." $comment (T "supportedValues") (delimit $val.options.values ", ") }} - {{ else if and $val.options.min (in (slice "int" "float" "float64") $type) }} - {{ $min = $val.options.min }} - {{ else if and $val.options.max (in (slice "int" "float" "float64") $type) }} - {{ $max = $val.options.max }} + {{ else if in (slice "int" "float" "float64") $type }} + {{ if eq (printf "%T" $val.options.min) "int" }}{{ $min = int $val.options.min }}{{ end }} + {{ if eq (printf "%T" $val.options.max) "int" }}{{ $max = int $val.options.max }}{{ end }} {{ end }} - {{ if and $min $max }} + {{ if and (eq (printf "%T" $min) "int") (eq (printf "%T" $max) "int") }} {{ $comment = printf "%s %s: [%d, %d]." $comment (T "supportedValues") $min $max }} - {{ else if $min }} + {{ else if (eq (printf "%T" $min) "int") }} {{ $comment = printf "%s %s: >=%d." $comment (T "supportedValues") $min }} - {{ else if $max }} + {{ else if (eq (printf "%T" $max) "int") }} {{ $comment = printf "%s %s: <=%d." $comment (T "supportedValues") $max }} {{ end }} diff --git a/layouts/shortcodes/button.html b/layouts/shortcodes/button.html index ccb65f49..76820a7b 100644 --- a/layouts/shortcodes/button.html +++ b/layouts/shortcodes/button.html @@ -28,7 +28,7 @@ {{ $outline := false -}} {{ with .Get "outline" }}{{ $outline = partial "utilities/CastBool.html" . }}{{ end -}} {{ $badge := .Get "badge" | default "" -}} -{{ $label := .Get "label" | default "" -}} +{{ $label := or (.Get "label") (.Get "aria-label") | default "" -}} {{ $tooltip := .Get "tooltip" | default "" -}} {{ $collapse := .Get "collapse" | default "" -}} {{ $href := .Get "href" | default "" -}} diff --git a/layouts/shortcodes/card-group.html b/layouts/shortcodes/card-group.html index d86a35f7..5eadc602 100644 --- a/layouts/shortcodes/card-group.html +++ b/layouts/shortcodes/card-group.html @@ -14,9 +14,11 @@ {{- $gutter := .Get "gutter" | default "4" -}} {{- $title := .Get "title" | default "" -}} {{- $separator := .Get "separator" | default "" -}} -{{- $class := .Get "class" | default "" -}} {{- $wrapper := .Get "wrapper" | default "" -}} {{- $responsive := .Get "responsive" | default true -}} + + +{{- $class := .Get "class" | default "" -}} {{- $color := .Get "color" | default "" -}} {{- $padding := .Get "padding" | default "auto" -}} {{- $header := .Get "header" | default "" -}} diff --git a/layouts/shortcodes/card.html b/layouts/shortcodes/card.html index e45a6167..553878a0 100644 --- a/layouts/shortcodes/card.html +++ b/layouts/shortcodes/card.html @@ -21,8 +21,10 @@ {{- $gutter := partial "utilities/GetArgParent" (dict "page" . "arg" "gutter") | default "0" -}} {{- $header := partial "utilities/GetArgParent" (dict "page" . "arg" "header") | default "full" -}} {{- $icon := .Get "icon" -}} +{{- $loading := .Get "loading" -}} {{- $orientation := partial "utilities/GetArgParent" (dict "page" . "arg" "orientation") | default "stacked" -}} {{- $padding := partial "utilities/GetArgParent" (dict "page" . "arg" "padding") | default "auto" -}} +{{- $ratio := partial "utilities/GetArgParent" (dict "page" . "arg" "ratio") | default "" -}} {{- $page := .Page -}} {{- $path := .Get "path" -}} {{- $thumbnail := .Get "thumbnail" -}} @@ -55,8 +57,10 @@ "footer" $footer "orientation" $orientation "description" $description + "ratio" $ratio "icon" $icon "thumbnail" $thumbnail + "loading" $loading "alt" $alt ) -}} diff --git a/layouts/shortcodes/nav-item.html b/layouts/shortcodes/nav-item.html index a5c56ce2..e7fc0846 100644 --- a/layouts/shortcodes/nav-item.html +++ b/layouts/shortcodes/nav-item.html @@ -24,9 +24,10 @@ {{- end -}} {{- $fade := false -}} - {{- if eq (.Parent.Get "fade") "true" -}} - {{- $fade = true -}} - {{- end -}} + {{ with .Get "fade" }}{{ $fade = partial "utilities/CastBool.html" . }}{{ end -}} + {{- $parentFade := false }} + {{ with .Parent.Get "fade" }}{{ $parentFade = partial "utilities/CastBool.html" . }}{{ end -}} + {{ $fade = or $fade $parentFade }} {{- $header := .Get "header" | default "" -}} {{- $class := .Get "class" | default "" -}} {{- $body := trim .Inner " \r\n" | .Page.RenderString -}} diff --git a/layouts/shortcodes/release.html b/layouts/shortcodes/release.html index 3288d405..23c975d6 100644 --- a/layouts/shortcodes/release.html +++ b/layouts/shortcodes/release.html @@ -18,7 +18,7 @@ {{- $short := false -}} {{ with .Get "short" }}{{ $short = partial "utilities/CastBool.html" . }}{{ end -}} {{- $inline := false -}} -{{ with .Get "inline" }}{{ $short = partial "utilities/CastBool.html" . }}{{ end -}} +{{ with .Get "inline" }}{{ $inline = partial "utilities/CastBool.html" . }}{{ end -}} {{- $title := $version -}} {{- $color := "primary" -}} {{- if eq $state "deprecated" -}} diff --git a/package-lock.json b/package-lock.json index e4d448a7..73d09890 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@gethinode/hinode", - "version": "0.22.0-beta4", + "version": "0.22.0-beta5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@gethinode/hinode", - "version": "0.22.0-beta4", + "version": "0.22.0-beta5", "license": "MIT", "devDependencies": { "@fullhuman/postcss-purgecss": "^5.0.0", diff --git a/package.json b/package.json index a52eaeb2..ed4c2898 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gethinode/hinode", - "version": "0.22.0-beta4", + "version": "0.22.0-beta5", "description": "Hinode is a clean documentation and blog theme for Hugo, an open-source static site generator", "keywords": [ "hugo",