@igor.dvlpr/strip-yaml-front-matter
Version:
π¦ Strips YAML front matter from a String or a file. πΎ
141 lines (90 loc) β’ 3.36 kB
Markdown
<h1 align="center">--- Strip YAML front matter ---</h1>
<br>
<p align="center">
π¦ Strips YAML front matter from a String or a file. πΎ
</p>
<br>
<br>
<div align="center">
<blockquote>
<br>
<h4>π Support further development</h4>
<span>I work hard for every project, including this one and your support means a lot to me!
<br>
Consider buying me a coffee. β
<br>
<strong>Thank you for supporting my efforts! ππ</strong></span>
<br>
<br>
<a href="https://ko-fi.com/igorskyflyer" target="_blank"><img src="https://raw.githubusercontent.com/igorskyflyer/igorskyflyer/main/assets/ko-fi.png" alt="Donate to igorskyflyer" width="150"></a>
<br>
<br>
<a href="https://github.com/igorskyflyer"><em>@igorskyflyer</em></a>
<br>
<br>
<br>
</blockquote>
</div>
<br>
## π€ Introduction
YAML front matter is a special text/code block placed between two triple-dashed lines that is added to the top of a file, usually Markdown (`.md`), sometimes even HTML (`.html`) files and provides meta data about the given file or provide means to do additional processing of the file. It is mostly used by static site generators (SSG) or content management systems (CMS).
<br>
Here's an example Markdown file:
`example.md`
```yaml
---
author: John Doe
publishDate: 27 Aug, 2024
---
Some Markdown content.
```
<br>
## π΅πΌ Usage
Install it by executing:
```shell
npm i "@igor.dvlpr/strip-yaml-front-matter"
```
<br>
## π€ΉπΌ API
```ts
function stripString(content: string): string
```
Strips YAML front matter from a String.
- `content`: `string`, the string whose YAML front matter to strip.
Returns the original String without the YAML front matter.
<br>
<br>
```ts
function stripFile(path: string): string
```
Strips YAML front matter from a file.
- `path`: `string`, the path to the file.
<br>
> [!WARNING]
> Will throw an error if the file path is not valid or the file cannot be read.
<br>
Returns the original file contents as a String without the YAML front matter.
---
## πͺͺ License
Licensed under the MIT license which is available here, [MIT license](https://github.com/igorskyflyer/npm-strip-yaml-front-matter/blob/main/LICENSE).
---
## 𧬠Related
[@igor.dvlpr/is-rootdir](https://www.npmjs.com/package/@igor.dvlpr/is-rootdir)
> _πΌ Provides a way to check if the given path is the root drive/directory. β_
<br>
[@igor.dvlpr/recursive-readdir](https://www.npmjs.com/package/@igor.dvlpr/recursive-readdir)
> _π Provides recursive readdir() and readdirSync() functions. π_
<br>
[@igor.dvlpr/extendable-string](https://www.npmjs.com/package/@igor.dvlpr/extendable-string)
> _π¦ ExtendableString allows you to create strings on steroids that have custom transformations applied to them, unlike common, plain strings. πͺ_
<br>
[@igor.dvlpr/regkeys](https://www.npmjs.com/package/@igor.dvlpr/regkeys)
> _π An npm package for fetching Windows registry keys. π_
<br>
[@igor.dvlpr/zep](https://www.npmjs.com/package/@igor.dvlpr/zep)
> _π§ Zep is a zero-dependency, efficient debounce module. β°_
<br>
<br>
>
> Provided by **Igor DimitrijeviΔ** ([*@igorskyflyer*](https://github.com/igorskyflyer/)).
>