Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,6 @@ details summary {

details summary:hover {
text-decoration-color: oklch(var(--color-brand) / 0.8);
}

details:hover {
cursor: pointer;
}

Expand Down
25 changes: 23 additions & 2 deletions exampleSite/content/test-product/everything.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,30 @@ This won't render anything.


## details
<details>
<summary>Learn how to pin NGINX Plus to a specific version, closed by default</summary>

And this is the content on how to do so.
</details>

<details open>
<summary>Learn how to pin NGINX Plus to a specific version</summary>
And this is the content on how to do so.
<summary>example dynamic-agent.conf</summary>

{{<note>}}
Default location in Linux environments: `/var/lib/nginx-agent/agent-dynamic.conf`

Default location in FreeBSD environments: `/var/db/nginx-agent/agent-dynamic.conf`
{{</note>}}

```yaml
# Dynamic configuration file for NGINX Agent.

instance_group: my-instance-group
tags:
- dev
- qa
```

</details>

## [Heading with link](https://nginx.org/)
Expand Down
Loading