Skip to content

Commit c9df839

Browse files
committed
Version bump
1 parent 1c018db commit c9df839

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/nuekit/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuekit",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"description": "The closer-to-standards web framework. Build sites and apps with less effort.",
55
"homepage": "https://nuejs.org",
66
"license": "MIT",
@@ -21,9 +21,9 @@
2121
"es-main": "^1.3.0",
2222
"import-meta-resolve": "^4.0.0",
2323
"js-yaml": "^4.1.0",
24+
"nuejs-core": "workspace:^",
2425
"nue-glow": "workspace:^",
25-
"nuejs-core": "^0.3",
26-
"nuemark": "^0.1"
26+
"nuemark": "workspace:^"
2727
},
2828
"engines": {
2929
"bun": ">= 1",

packages/nuemark/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuemark",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Markdown dialect for rich, interactive web content",
55
"homepage": "https://nuejs.org",
66
"license": "MIT",
@@ -12,7 +12,7 @@
1212
},
1313

1414
"dependencies": {
15-
"nue-glow": "^0.1.0",
15+
"nue-glow": "workspace:^",
1616
"js-yaml": "^4.1.0",
1717
"marked": "^9.1.2"
1818
}

packages/nuemark/src/tags.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export const tags = {
127127
// caption, wrapper, language, numbered
128128
code(data) {
129129
const { caption, attr } = data
130-
const head = caption ? elem('figcaption', elem('h3', caption)) : ''
130+
const head = caption ? elem('figcaption', elem('h3', parseInline(caption))) : ''
131131
const root = head ? elem('figure', attr, head + createCodeBlock(data)) : createCodeBlock(data, attr)
132132
return createWrapper(data.wrapper, root)
133133
},

0 commit comments

Comments
 (0)