dogsbay 0.2.0-beta.53 → 0.2.0-beta.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -266,6 +266,12 @@ function convertFragmentAdocs(sourceRoot, outputContentDir, scopedRootDirs, page
266
266
  basePath: srcPath,
267
267
  dlistFormat: "pandoc",
268
268
  admonitionFormat: "docusaurus",
269
+ // Emit block roles ([role="_abstract"], [.lead], etc.) as
270
+ // markdown-it-attrs classes. Safe here because the migrate output
271
+ // is dogsbay-md, parsed downstream WITH markdown-it-attrs (the class
272
+ // becomes a real HTML class). The from:asciidoc direct path leaves
273
+ // this off (md-attrs not run there → would leak). See #384.
274
+ blockRoles: true,
269
275
  // imagesdir = "/_assets/<dir>" makes the engine emit image
270
276
  // srcs already content-rooted (/_assets/images/foo.png), so
271
277
  // they resolve regardless of fragment depth. See #363.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dogsbay",
3
- "version": "0.2.0-beta.53",
3
+ "version": "0.2.0-beta.55",
4
4
  "description": "CLI for Dogsbay — scaffold, build, and serve documentation sites with markdown / MkDocs / Obsidian / OpenAPI sources",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,18 +33,18 @@
33
33
  "picocolors": "^1.1.0",
34
34
  "prompts": "^2.4.2",
35
35
  "yaml": "^2.8.3",
36
- "@dogsbay/autodoc-python": "0.2.0-beta.53",
37
- "@dogsbay/format-mkdocs": "0.2.0-beta.53",
38
- "@dogsbay/format-astro": "0.2.0-beta.53",
39
- "@dogsbay/format-obsidian": "0.2.0-beta.53",
40
- "@dogsbay/format-mdx": "0.2.0-beta.53",
41
- "@dogsbay/format-dogsbay-md": "0.2.0-beta.53",
42
- "@dogsbay/format-starlight": "0.2.0-beta.53",
43
- "@dogsbay/format-openapi": "0.2.0-beta.53",
44
- "@dogsbay/adoc2md-modular": "0.2.0-beta.53",
45
- "@dogsbay/format-asciidoc": "0.2.0-beta.53",
46
- "@dogsbay/minja": "0.2.0-beta.53",
47
- "@dogsbay/types": "0.2.0-beta.53"
36
+ "@dogsbay/autodoc-python": "0.2.0-beta.55",
37
+ "@dogsbay/format-obsidian": "0.2.0-beta.55",
38
+ "@dogsbay/format-mkdocs": "0.2.0-beta.55",
39
+ "@dogsbay/format-mdx": "0.2.0-beta.55",
40
+ "@dogsbay/format-astro": "0.2.0-beta.55",
41
+ "@dogsbay/format-starlight": "0.2.0-beta.55",
42
+ "@dogsbay/format-dogsbay-md": "0.2.0-beta.55",
43
+ "@dogsbay/format-openapi": "0.2.0-beta.55",
44
+ "@dogsbay/adoc2md-modular": "0.2.0-beta.55",
45
+ "@dogsbay/format-asciidoc": "0.2.0-beta.55",
46
+ "@dogsbay/minja": "0.2.0-beta.55",
47
+ "@dogsbay/types": "0.2.0-beta.55"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/markdown-it": "^14.1.0",