n8n-nodes-minimark
v1.0.2
Published
n8n node for Minimark utilities
Maintainers
Readme
n8n-nodes-minimark
This is an n8n community node. It lets you use Minimark utilities in your n8n workflows.
Minimark is a minimal representation of Abstract Syntax Trees (AST) for Markdown.
n8n is a fair-code licensed workflow automation platform.
Installation Operations Compatibility Usage Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
- Stringify: Convert Minimark AST (JSON) back to Markdown.
- Get Text Content: Extract plain text from Minimark AST.
Compatibility
- n8n version 1.0.0 and above.
Usage
Stringify
Convert a Minimark AST JSON structure to a Markdown string.
Input AST:
[
["h1", {}, "Hello World"],
["p", {}, "This is a ", ["strong", {}, "Minimark"], " test."]
]Output Markdown:
# Hello World
This is a **Minimark** test.Get Text Content
Extract all text from a Minimark AST and join it into a single string.
Input AST:
[
["h1", {}, "Hello World"],
["p", {}, "This is a ", ["strong", {}, "Minimark"], " test."]
]Output Text:
Hello World This is a Minimark test.Resources
Version history
1.0.0
- Initial release with Stringify and Text Content operations.
