remark-comments
Advanced tools
Comparing version 1.2.7 to 1.2.8
{ | ||
"name": "remark-comments", | ||
"version": "1.2.7", | ||
"version": "1.2.8", | ||
"repository": { | ||
@@ -34,3 +34,3 @@ "url": "https://github.com/zestedesavoir/zmarkdown/tree/master/packages/remark-comments", | ||
"license": "MIT", | ||
"gitHead": "41ba346f4cb8a52f3ca658c7c217f578cbfca661" | ||
"gitHead": "b05f25a9f9f7be3c2987fb3c07f48cc1b43ca2aa" | ||
} |
@@ -15,2 +15,15 @@ # remark-comments [![Build Status][build-badge]][build-status] [![Coverage Status][coverage-badge]][coverage-status] | ||
## AST node (see [mdast][mdast] specification) | ||
The plugin will product the following node and add it to the MDAST syntax tree: | ||
```javascript | ||
interface Comments <: Node { | ||
type: "comments"; | ||
data: { | ||
comment: string; | ||
} | ||
} | ||
``` | ||
## Installation | ||
@@ -17,0 +30,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7456
95