Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zakhenry/embedme
Utility for embedding code snippets into markdown documents
https://github.com/zakhenry/embedme
embedme markdown multi-language snippets
Last synced: 3 months ago
JSON representation
Utility for embedding code snippets into markdown documents
- Host: GitHub
- URL: https://github.com/zakhenry/embedme
- Owner: zakhenry
- License: mit
- Created: 2019-06-15T22:58:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T04:55:59.000Z (6 months ago)
- Last Synced: 2024-07-19T02:13:01.254Z (4 months ago)
- Topics: embedme, markdown, multi-language, snippets
- Language: TypeScript
- Size: 1.02 MB
- Stars: 227
- Watchers: 3
- Forks: 38
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - zakhenry/embedme - Utility for embedding code snippets into markdown documents (TypeScript)
README
# EmbedMe
Simple utility to embed source files into markdown code blocks [why tho?](#why)
[![npm version](https://badge.fury.io/js/embedme.svg)](https://www.npmjs.com/package/embedme)
[![Build Status](https://travis-ci.org/zakhenry/embedme.svg?branch=master)](https://travis-ci.org/zakhenry/embedme)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](https://commitizen.github.io/cz-cli/)![Demo](readme/asciinema/demo.svg)
## Usage
With a `README.md` in your current working directory, add a code block for one of the
[supported file types](#multi-language) and start the code block simply with a comment with the path to a
file. For exampleThis is a *markdown* document with a code block:
```ts
// example.ts
```Next, run the following
```bash
npx embedme README.md
```Et voilà! Your README.md file will be updated with the content of your source file:
This is a *markdown* document with a code block:
```ts
// example.ts
export function helloWorld(name: string): string {
return `Hello ${name}!, how are you today?`;
}
```As the comment is preserved, you can happily re-run `embedme` and it will run again but there will be no changes.
## Features
```txt
$ embedme --help
Usage: embedme [options] [...files]Options:
-V, --version output the version number
--verify Verify that running embedme would result in no
changes. Useful for CI
--dry-run Run embedme as usual, but don't write
--source-root [directory] Directory your source files live in in order to
shorten the comment line in code fence
--silent No console output
--stdout Output resulting file to stdout (don't rewrite
original)
--strip-embed-comment Remove the comments from the code fence. *Must* be
run with --stdout flag
-h, --help display help for command```
### Partial Snippets
Very often you only want to highlight a small part of a file, to do so simply suffix the filename with the GitHub line
number syntax, e.g. `path/to/my/file.ts#L20-L30`.### Multi Language
`embedme` simply uses the file type hint in a code fence to choose a strategy for finding the commented filename in the
first line of the code block. This is a relatively trivial regular expression, so many more languages can be supported
in futureHere's a list of file types supported by this utility, if you have a need for another language please feel free to
contribute, it is easy!```ts
// src/embedme.lib.ts#L44-L82enum SupportedFileType {
PLAIN_TEXT = 'txt',
TYPESCRIPT = 'ts',
JAVASCRIPT = 'js',
REASON = 're',
SCSS = 'scss',
RUST = 'rust',
JAVA = 'java',
CPP = 'cpp',
C = 'c',
HTML = 'html',
XML = 'xml',
MARKDOWN = 'md',
YAML = 'yaml',
JSON = 'json',
JSON_5 = 'json5',
PYTHON = 'py',
BASH = 'bash',
SHELL = 'sh',
POWERSHELL = 'ps1',
GOLANG = 'go',
OBJECTIVE_C = 'objectivec',
PHP = 'php',
C_SHARP = 'cs',
SWIFT = 'swift',
RUBY = 'rb',
KOTLIN = 'kotlin',
SCALA = 'scala',
CRYSTAL = 'cr',
PLANT_UML = 'puml',
MERMAID = 'mermaid',
CMAKE = 'cmake',
PROTOBUF = 'proto',
SQL = 'sql',
HASKELL = 'hs',
ARDUINO = 'ino',
JSX = 'jsx',
TSX = 'tsx',
}
```### Alternate embedding syntax
It is recommended to use the syntax described above as it is a good hint for readers and maintainers where the source of
this file is, however in some situations you may want to omit the comment in the code block, but still benefit from the
embedding behaviour of embedme.This can be achieved by preceding the code block with a markdown comment in the form of ``
For example:
This is a *markdown* document with a code block:```ts
```Will result in the following output
This is a *markdown* document with a code block:```ts
export function helloWorld(name: string): string {
return `Hello ${name}!, how are you today?`;
}```
### Glob matching
If you want to run `embedme` over multiple files, you can use glob matching, i.e.
```bash
embedme "src/**/*.md"
```Note embedme supports both quoted globbing and unquoted. Be careful using unquoted
globbing as this can lead to behaviour that is not portable between different
operating systems.If you're using Windows, you must use forward slashes (`/`) to denote path separators.
You can also pass multiple separate glob patterns to match multiple sets of files
example:
```bash
embedme "src/**/*.md" "docs/**/*.markdown"
```### CI Checks
If you're using continuous integration, you can pass the flag `--verify` to `embedme` to check that there are no changes
expected to your files. This is useful for repositories with multiple contributors who may not know about `embedme`, and
also for yourself as a sanity check that you remembered to run it after updating sample code!### Output to stdout
Don't want to rewrite the file in-place? That's ok too - you can pass the flag `--stdout` to have the output pass to
stdout - this will allow you to redirect the output to another file.Additionally, in this mode a `--strip-embed-comment` flag is available, which allows embedme to exclude the matched
comment from the output. This isn't generally recommended as the comment is generally unobtrusive, and will really help
maintainers to know where they should go to update the file.Example
```sh
# readme/output-to-std-out.shembedme --stdout README.template.md > README.md
```
Note that with `--stdout` flag the log output from embedme is redirected to stderr so you can still see the logs but the
output can be redirected.### Ignoring files
By default `embedme` uses the local `.gitignore` file to exclude any files that match your input but are ignored. You
can customise this ignore behavior by creating a `.embedmeignore` file, which uses the same syntax as `.gitignore`. This
file will be used _instead of_ `.gitignore`, not merged.## Why?
> Why do I want this utility? Writing code in a markdown document is not difficult?
True, however it is difficult to know when your documentation files become out of date - if you're introducing a
breaking change, having your example code _actually using your library_ guarantees it will be correct.> How can just having my examples in the language give me guarantees?
For starters if you're using a typesafe language (e.g. Typescript) you will get compiler errors, and secondarily you
really should be writing unit tests on your example code. As simple as it might be, how embarrassing is it if your
example doesn't even work?!