
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
select-section
Advanced tools
Cut out sections from TxtAST or mdast.
A section is slitted by Header Node.
This rule defined section as following:
The Markdown contents
# Header1
text.
# Header2
text.
to be
------------|---- # Header 1
|
Section1 | text.
|
------------|---- # Header 2
|
Section2 | text.
|
------------|---------------
A section is slitted by Header Node.
This rule defined section as following:
The Markdown contents
# Header1
text.
## Header2
text.
to be
--------------------------|---- # Header 1
|
Section1 | text.
|
--------------|---- ## Header 2
- -|
- Section2 -| text.
- -|
--------------------------|---------------
Tree view:
└── _Section1_
├── # Header 1
├── text.
└── _Section2_
├── ## Header 2
└── text.
Install with npm:
npm install select-section
Create "Section" node that compatible with TxtAST.
const createSections = require("select-section");
const parse = require("markdown-to-ast").parse;
const AST = parse(`# Header
text1
text1
# Header
text2
text2`);
const results = createSections(AST);
/*
[
{
"type": "Section",
"range": [
0,
20
],
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 5
}
},
"raw": "# Headertext1\ntext1",
"children": [
{
"type": "Header",
"depth": 1,
"children": [
{
"type": "Str",
"value": "Header",
"loc": {
"start": {
"line": 1,
"column": 2
},
"end": {
"line": 1,
"column": 8
}
},
"range": [
2,
8
],
"raw": "Header"
}
],
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 8
}
},
"range": [
0,
8
],
"raw": "# Header"
},
{
"type": "Paragraph",
"children": [
{
"type": "Str",
"value": "text1\ntext1",
"loc": {
"start": {
"line": 2,
"column": 0
},
"end": {
"line": 3,
"column": 5
}
},
"range": [
9,
20
],
"raw": "text1\ntext1"
}
],
"loc": {
"start": {
"line": 2,
"column": 0
},
"end": {
"line": 3,
"column": 5
}
},
"range": [
9,
20
],
"raw": "text1\ntext1"
}
]
},
{
"type": "Section",
"range": [
22,
43
],
"loc": {
"start": {
"line": 5,
"column": 0
},
"end": {
"line": 8,
"column": 5
}
},
"raw": "# Headertext2\ntext2",
"children": [
{
"type": "Header",
"depth": 1,
"children": [
{
"type": "Str",
"value": "Header",
"loc": {
"start": {
"line": 5,
"column": 2
},
"end": {
"line": 5,
"column": 8
}
},
"range": [
24,
30
],
"raw": "Header"
}
],
"loc": {
"start": {
"line": 5,
"column": 0
},
"end": {
"line": 5,
"column": 8
}
},
"range": [
22,
30
],
"raw": "# Header"
},
{
"type": "Paragraph",
"children": [
{
"type": "Str",
"value": "text2\ntext2",
"loc": {
"start": {
"line": 7,
"column": 0
},
"end": {
"line": 8,
"column": 5
}
},
"range": [
32,
43
],
"raw": "text2\ntext2"
}
],
"loc": {
"start": {
"line": 7,
"column": 0
},
"end": {
"line": 8,
"column": 5
}
},
"range": [
32,
43
],
"raw": "text2\ntext2"
}
]
}
]
*/
See Releases page.
Install devDependencies and Run npm test
:
npm i -d && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT © azu
FAQs
Cut out sections from TxtAST.
The npm package select-section receives a total of 5,429 weekly downloads. As such, select-section popularity was classified as popular.
We found that select-section demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.