Skip to content

Commit 4629ad6

Browse files
chore(master): release 4.11.0 (#83)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 622b546 commit 4629ad6

9 files changed

Lines changed: 49 additions & 41 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"packages/htmdx": "4.10.1"
2+
"packages/htmdx": "4.11.0"
33
}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<html lang="en">
2121
<head>
2222
<meta charset="utf-8">
23-
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/browser.js" defer></script>
23+
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/browser.js" defer></script>
2424
</head>
2525
<body>
2626
<!-- prettier-ignore -->
@@ -196,7 +196,7 @@ Host code registers standard React components and themes through `window.Htmdx`;
196196
<!-- x-release-please-start-version -->
197197

198198
```html
199-
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/browser.js" defer></script>
199+
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/browser.js" defer></script>
200200
<script>
201201
window.addEventListener('htmdx:ready', () => {
202202
const { createElement } = window.Htmdx.React;
@@ -269,10 +269,10 @@ The package ships an `htmdx` bin, so `npx` runs the toolchain without an install
269269
<!-- x-release-please-start-version -->
270270

271271
```bash
272-
npx @wix/htmdx@4.10.1 lint docs/*.htmdx --strict
273-
npx @wix/htmdx@4.10.1 compile report.htmdx --out report-body.html
274-
npx @wix/htmdx@4.10.1 components Callout
275-
npx @wix/htmdx@4.10.1 skill
272+
npx @wix/htmdx@4.11.0 lint docs/*.htmdx --strict
273+
npx @wix/htmdx@4.11.0 compile report.htmdx --out report-body.html
274+
npx @wix/htmdx@4.11.0 components Callout
275+
npx @wix/htmdx@4.11.0 skill
276276
```
277277

278278
<!-- x-release-please-end-version -->

packages/htmdx/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [4.11.0](https://github.com/wix-incubator/htmdx/compare/v4.10.1...v4.11.0) (2026-07-28)
4+
5+
6+
### Features
7+
8+
* **markdown:** add emphasis, blockquotes, breaks, autolinks and escapes ([#84](https://github.com/wix-incubator/htmdx/issues/84)) ([622b546](https://github.com/wix-incubator/htmdx/commit/622b546baec4e77d6ab9327e671eb7a36dc9fa86))
9+
* **markdown:** render heading levels four through six ([#82](https://github.com/wix-incubator/htmdx/issues/82)) ([4c3d438](https://github.com/wix-incubator/htmdx/commit/4c3d438e0a59bc4ce89b358a1ce01640a217ceab))
10+
311
## [4.10.1](https://github.com/wix-incubator/htmdx/compare/v4.10.0...v4.10.1) (2026-07-27)
412

513

packages/htmdx/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Start with one HTML file:
1313
<html lang="en">
1414
<head>
1515
<meta charset="utf-8" />
16-
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/browser.js" defer></script>
16+
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/browser.js" defer></script>
1717
</head>
1818
<body>
1919
<!-- prettier-ignore -->
@@ -53,7 +53,7 @@ Every release includes its machine-readable component contract at:
5353
<!-- x-release-please-start-version -->
5454

5555
```text
56-
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/components.json
56+
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/components.json
5757
```
5858

5959
<!-- x-release-please-end-version -->
@@ -472,10 +472,10 @@ to the version an artifact declares gets you the behavior that artifact ships:
472472
<!-- x-release-please-start-version -->
473473

474474
```bash
475-
npx @wix/htmdx@4.10.1 lint docs/*.htmdx --strict
476-
npx @wix/htmdx@4.10.1 compile report.htmdx --out report-body.html
477-
npx @wix/htmdx@4.10.1 components Callout
478-
npx @wix/htmdx@4.10.1 skill
475+
npx @wix/htmdx@4.11.0 lint docs/*.htmdx --strict
476+
npx @wix/htmdx@4.11.0 compile report.htmdx --out report-body.html
477+
npx @wix/htmdx@4.11.0 components Callout
478+
npx @wix/htmdx@4.11.0 skill
479479
```
480480

481481
<!-- x-release-please-end-version -->
@@ -573,11 +573,11 @@ exact version an artifact pins instead of a copy that drifts:
573573
<!-- x-release-please-start-version -->
574574

575575
```bash
576-
npx @wix/htmdx@4.10.1 skill # authoring guidance
577-
npx @wix/htmdx@4.10.1 skill --list # available topics
578-
npx @wix/htmdx@4.10.1 skill components # body grammar per component
579-
npx @wix/htmdx@4.10.1 skill --full # every topic in one stream
580-
npx @wix/htmdx@4.10.1 skill starter > brief.html
576+
npx @wix/htmdx@4.11.0 skill # authoring guidance
577+
npx @wix/htmdx@4.11.0 skill --list # available topics
578+
npx @wix/htmdx@4.11.0 skill components # body grammar per component
579+
npx @wix/htmdx@4.11.0 skill --full # every topic in one stream
580+
npx @wix/htmdx@4.11.0 skill starter > brief.html
581581
```
582582

583583
<!-- x-release-please-end-version -->

packages/htmdx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wix/htmdx",
3-
"version": "4.10.1",
3+
"version": "4.11.0",
44
"description": "Render editable HTMDX source inside plain HTML artifacts.",
55
"keywords": [
66
"agents",

packages/htmdx/skill/artifact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
66
<title>Artifact title</title>
77
<!-- x-release-please-start-version -->
8-
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/browser.js" defer></script>
8+
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/browser.js" defer></script>
99
<!-- x-release-please-end-version -->
1010
</head>
1111
<body>

packages/htmdx/skill/authoring.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ runtime it describes. Companion topics:
66
<!-- x-release-please-start-version -->
77

88
```bash
9-
npx @wix/htmdx@4.10.1 skill components # body grammar for every component
10-
npx @wix/htmdx@4.10.1 skill integration # React host, registration, testing
11-
npx @wix/htmdx@4.10.1 skill starter # a starter artifact to copy
9+
npx @wix/htmdx@4.11.0 skill components # body grammar for every component
10+
npx @wix/htmdx@4.11.0 skill integration # React host, registration, testing
11+
npx @wix/htmdx@4.11.0 skill starter # a starter artifact to copy
1212
```
1313

1414
<!-- x-release-please-end-version -->
@@ -60,7 +60,7 @@ to disk — and replace the title, frontmatter, and body. The shell is:
6060
<meta charset="utf-8" />
6161
<meta name="viewport" content="width=device-width, initial-scale=1" />
6262
<title>Artifact title</title>
63-
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/browser.js" defer></script>
63+
<script src="https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/browser.js" defer></script>
6464
</head>
6565
<body>
6666
<!-- prettier-ignore -->
@@ -145,7 +145,7 @@ exact-version manifest is the source of truth when the network is reachable:
145145
<!-- x-release-please-start-version -->
146146

147147
```text
148-
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/components.json
148+
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/components.json
149149
```
150150

151151
<!-- x-release-please-end-version -->
@@ -210,7 +210,7 @@ Lint every artifact before presenting it, with the runtime it pins:
210210
<!-- x-release-please-start-version -->
211211

212212
```bash
213-
npx @wix/htmdx@4.10.1 lint path/to/artifact.html --strict
213+
npx @wix/htmdx@4.11.0 lint path/to/artifact.html --strict
214214
```
215215

216216
<!-- x-release-please-end-version -->
@@ -245,10 +245,10 @@ Already a dependency? Use the local bin instead — `yarn htmdx …`,
245245
<!-- x-release-please-start-version -->
246246

247247
```bash
248-
npx @wix/htmdx@4.10.1 lint artifact.html # one artifact
249-
npx @wix/htmdx@4.10.1 lint a.html b.html doc.mdx # several files
250-
npx @wix/htmdx@4.10.1 lint artifacts/*.html # let the shell expand it
251-
npx @wix/htmdx@4.10.1 lint artifact.html --strict --format json
248+
npx @wix/htmdx@4.11.0 lint artifact.html # one artifact
249+
npx @wix/htmdx@4.11.0 lint a.html b.html doc.mdx # several files
250+
npx @wix/htmdx@4.11.0 lint artifacts/*.html # let the shell expand it
251+
npx @wix/htmdx@4.11.0 lint artifact.html --strict --format json
252252
```
253253

254254
<!-- x-release-please-end-version -->
@@ -271,7 +271,7 @@ editor shows.
271271
```text
272272
artifact.html
273273
2:26 warning unpinned-runtime
274-
runtime is not pinned to a version; a future release can change this artifact (pin @wix/htmdx@4.10.1)
274+
runtime is not pinned to a version; a future release can change this artifact (pin @wix/htmdx@4.11.0)
275275
5:10 error unknown-prop
276276
unknown prop "type" for <Callout>
277277
9:1 error body-contract
@@ -292,9 +292,9 @@ a pass.
292292
<!-- x-release-please-start-version -->
293293

294294
```bash
295-
npx @wix/htmdx@4.10.1 compile artifact.html --out snapshot.html
296-
npx @wix/htmdx@4.10.1 components # the whole catalog, grouped by source
297-
npx @wix/htmdx@4.10.1 components Foldout # purpose, body mode, props, example
295+
npx @wix/htmdx@4.11.0 compile artifact.html --out snapshot.html
296+
npx @wix/htmdx@4.11.0 components # the whole catalog, grouped by source
297+
npx @wix/htmdx@4.11.0 components Foldout # purpose, body mode, props, example
298298
```
299299

300300
<!-- x-release-please-end-version -->
@@ -314,11 +314,11 @@ the runtime that renders the artifact.
314314
<!-- x-release-please-start-version -->
315315

316316
```bash
317-
npx @wix/htmdx@4.10.1 skill # this topic (authoring)
318-
npx @wix/htmdx@4.10.1 skill --list # available topics
319-
npx @wix/htmdx@4.10.1 skill components # one topic
320-
npx @wix/htmdx@4.10.1 skill --full # every topic in one stream
321-
npx @wix/htmdx@4.10.1 skill starter > brief.html
317+
npx @wix/htmdx@4.11.0 skill # this topic (authoring)
318+
npx @wix/htmdx@4.11.0 skill --list # available topics
319+
npx @wix/htmdx@4.11.0 skill components # one topic
320+
npx @wix/htmdx@4.11.0 skill --full # every topic in one stream
321+
npx @wix/htmdx@4.11.0 skill starter > brief.html
322322
```
323323

324324
<!-- x-release-please-end-version -->

packages/htmdx/skill/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ canonical example, body mode, and props:
77
<!-- x-release-please-start-version -->
88

99
```text
10-
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.10.1/dist/components.json
10+
https://cdn.jsdelivr.net/npm/@wix/htmdx@4.11.0/dist/components.json
1111
```
1212

1313
<!-- x-release-please-end-version -->

packages/htmdx/skill/integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ For CI, lint the files instead:
9191
<!-- x-release-please-start-version -->
9292

9393
```bash
94-
npx @wix/htmdx@4.10.1 lint artifacts/*.html --strict
94+
npx @wix/htmdx@4.11.0 lint artifacts/*.html --strict
9595
```
9696

9797
<!-- x-release-please-end-version -->

0 commit comments

Comments
 (0)