mark-deco-cli 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/dist/cli.cjs +1 -1
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -32475,7 +32475,7 @@ function setupProcessor(config) {
32475
32475
  }
32476
32476
  const program = new commander.Command();
32477
32477
  async function main() {
32478
- program.name("mark-deco-cli").description("MarkDeco - markdown processor").version("0.2.0");
32478
+ program.name("mark-deco-cli").description("MarkDeco - markdown processor").version("0.2.1");
32479
32479
  program.option("-i, --input <file>", "Input markdown file (default: stdin)").option("-o, --output <file>", "Output HTML file (default: stdout)").option("-c, --config <file>", "Configuration file path").option("-p, --plugins [plugins...]", "Enable specific plugins (oembed, card, mermaid)").option("--no-plugins", "Disable all default plugins").option("--unique-id-prefix <prefix>", "Prefix for unique IDs", "section").option("--hierarchical-heading-id", "Use hierarchical heading IDs", true).option("--content-based-heading-id", "Use content-based heading IDs", false).option("--frontmatter-output <file>", "Output frontmatter as JSON to specified file").option("--heading-tree-output <file>", "Output heading tree as JSON to specified file").action(async (options2) => {
32480
32480
  try {
32481
32481
  const config = await loadConfig(options2.config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mark-deco-cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Command-line interface for mark-deco enhanced markdown processor",
5
5
  "keywords": [
6
6
  "markdown",