Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/igorskyflyer/npm-strip-yaml-front-matter

πŸ¦“ Strips YAML front matter from a String or a file. πŸ‘Ύ
https://github.com/igorskyflyer/npm-strip-yaml-front-matter

back-end biome esm file front-matter frontmatter igorskyflyer javascript js path regex regexp string ts typescript vitest yaml

Last synced: 3 days ago
JSON representation

πŸ¦“ Strips YAML front matter from a String or a file. πŸ‘Ύ

Awesome Lists containing this project

README

        

--- Strip YAML front matter ---



πŸ¦“ Strips YAML front matter from a String or a file. πŸ‘Ύ








πŸ’– Support further development


I work hard for every project, including this one and your support means a lot to me!


Consider buying me a coffee. β˜•


Thank you for supporting my efforts! πŸ™πŸ˜Š





Donate to igorskyflyer




@igorskyflyer








## πŸ€” 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).


Here's an example Markdown file:

`example.md`
```yaml
---
author: John Doe
publishDate: 27 Aug, 2024
---

Some Markdown content.
```


## πŸ•΅πŸΌ Usage

Install it by executing:

```shell
npm i "@igor.dvlpr/strip-yaml-front-matter"
```


## 🀹🏼 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.




```ts
function stripFile(path: string): string
```

Strips YAML front matter from a file.

- `path`: `string`, the path to the file.


> [!WARNING]
> Will throw an error if the file path is not valid or the file cannot be read.


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. β›”_


[@igor.dvlpr/recursive-readdir](https://www.npmjs.com/package/@igor.dvlpr/recursive-readdir)

> _πŸ“– Provides recursive readdir() and readdirSync() functions. πŸ“_


[@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. πŸͺ€_


[@igor.dvlpr/regkeys](https://www.npmjs.com/package/@igor.dvlpr/regkeys)

> _πŸ“š An npm package for fetching Windows registry keys. πŸ—_


[@igor.dvlpr/zep](https://www.npmjs.com/package/@igor.dvlpr/zep)

> _🧠 Zep is a zero-dependency, efficient debounce module. ⏰_




>
> Provided by **Igor Dimitrijević** ([*@igorskyflyer*](https://github.com/igorskyflyer/)).
>