Skip to content

Commit

Permalink
docs: more link fixes, typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Feb 7, 2025
1 parent 4a4941c commit 0a1f275
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/nuejs.org/blog/introducing-nuemark/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ ps: Check out [Getting started docs](/docs/#node) if you prefer Node.
### Learn Nuemark

- [User guide](/docs/content.html)
- [Tag reference](/docs/tags.html)
- [Tag reference](/docs/content-tags.html)
- [HTML output](/docs/page-layout.html#md)


Expand Down
4 changes: 2 additions & 2 deletions packages/nuejs.org/blog/nue-1-beta/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ The web component can be assigned globally in `site.yaml` for all page sections


### Miscellaneous new features
- New `<navi>`, `<markdown>`, `<pretty-date>`, and `<toc>` tags to help building [custom layouts](/docs/custom-layouts.html)
- New `<navi>`, `<markdown>`, `<pretty-date>`, and `<toc>` tags to help building [custom layouts](/docs/layout.html)

- A new [`<gallery>`](/docs/content-collections.html#gallery) tag to render content collections

- Inline SVG support: You can inline your SVG files with a new inline attribute. For example: `[image /img/my-animated.svg inline]`. This allows you to control the image and its transitions/animations with CSS.

- Files with a `.htm` suffix are treated as [client-side components](/docs/reactive-components.html). Now both `.nue` and `.htm` files are treated the same.
- Files with a `.htm` suffix are treated as [client-side components](/docs/islands.html). Now both `.nue` and `.htm` files are treated the same.

- Blog entries are now sorted by both `pubDate` and a new, shorter `date` property.

Expand Down
6 changes: 3 additions & 3 deletions packages/nuejs.org/blog/nuekit-010/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ Nue is an order of magnitude faster than its cousins. An identical blogging site
## Other notable highlights { #other }

- [View transitions](/docs/reactivity.html)
- [Layout components](/docs/custom-layouts.html)
- [Layout components](/docs/layout.html)
- [JS/TypeScript modules](/docs/reactivity.html)
- [Content collections](/docs/content-collections.html)
- [Reactive components](/docs/reactive-components.html)
- [Extreme performance](/docs/performance-optimization.html)
- [Reactive components](/docs/islands.html)
- [Extreme performance](/docs/optimization.html)


### New, beautiful documentation area
Expand Down
6 changes: 3 additions & 3 deletions packages/nuejs.org/docs/reactivity.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Reactive islands are interactive components within the server-rendered, static H
```


After saving the component to a file with `.htm` or `.nue` extension, you can use it in your Markdown content as follows:
After saving the component to a file with `.htm` or `.dthml` extension, you can use it in your Markdown content as follows:


```md
Expand All @@ -258,7 +258,7 @@ After saving the component to a file with `.htm` or `.nue` extension, you can us
> [join-list cta="Submit form"]
```

The component can also be used on your [layout files](custom-layouts.html):
The component can also be used in your [layout files](layout.html):

```html
<join-list cta="Submit form"/>
Expand Down Expand Up @@ -310,7 +310,7 @@ addEventListener('click', e => {


### Google Analytics
Google Analytics and other scripts that must be imported externally should go to the head section of your website. This happens by adding a custom `head` element to a root level [layout file](custom-layouts.html):
Google Analytics and other scripts that must be imported externally should go to the head section of your website. This happens by adding a custom `head` element to a root level [layout file](layout.html):


```html
Expand Down

0 comments on commit 0a1f275

Please sign in to comment.