A Rust library that allows a user to extract an arbitrary number of lines of "front-matter" from the start of any multiline string.
Note that absolutely no parsing of extracted front-matter is performed; this is designed to output its results for another library to then parse.
This project follows Semantic Versioning principals starting with v1.0.0
This repository is located on GitLab.com.
Input:
```md root: child1: true
This is an example Markdown file. ```
Extractor
extract
(for a String
), orcollect
(for a Vec<&str>
)Code:
```rust use extract_frontmatter::Extractor;
let mut extractor = Extractor::new(input); extractor.selectbyterminator("---");
let output: String = extractor.extract(); ```
Output:
yml
root:
child1: true
child2: two
Extractor
remove
on itCode:
```rust use extract_frontmatter::Extractor;
let mut extractor = Extractor::new(input); extractor.selectbyterminator("---");
let output: &str = extractor.remove().trim(); ```
Output:
```md
This is an example Markdown file. ```
Extractor
split
on itCode:
```rust use extract_frontmatter::Extractor;
let mut extractor = Extractor::new(input); extractor.selectbyterminator("---");
let (front_matter, document): (Vec<&str>, &str) = extractor.split();
let frontmatter = frontmatter.join("\n"); let document = document.trim(); ```
Front matter:
yml
root:
child1: true
child2: two
Document:
```md
This is an example Markdown file. ```
| Method | Description |
| ---------------------------------------- | ---------------------------------------------------------------- |
| select_by_terminator(terminator: &str)
| Selects lines until the first one equal to terminator
is found |
| select_by_prefix(prefix: &str)
| Selects consecutive lines starting with prefix
|
| select_by_line_count(count: usize)
| Selects count
lines |
| Method | Description |
| ---------------------------- | -------------------------------------------------------------- |
| strip_prefix(prefix: &str)
| Strips the given prefix
from all returned lines |
| strip_whitespace()
| Strips leading and trailing whitespace from all returned lines |
| discard_first_line()
| Skips the first line to be returned |
| discard_last_line()
| Skips the last line to be returned |