Closed as not planned
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and discussions and couldn’t find anything (or linked relevant results below)
Affected package
mdast-util-to-markdown^2.1.2
Steps to reproduce
<strong>mdast,</strong>nice work
import { toMarkdown } from 'mdast-util-to-markdown'
console.log(
toMarkdown({
type: 'root',
children: [
{
type: 'strong',
children: [
{
type: 'text',
value: 'mdast,',
},
],
},
{
type: 'text',
value: 'nice work',
},
],
}),
)
Actual behavior
**mdast,**nice work
Expected behavior
**mdast,**nice work
Runtime
node@22
Package manager
npm
Operating system
macOS 13.7.6
Build and bundle tools
No response