https://github.com/blfpd/lilydown
Lilypond encapsulated in a MarkDown file with TOML front matter
https://github.com/blfpd/lilydown
Last synced: about 1 month ago
JSON representation
Lilypond encapsulated in a MarkDown file with TOML front matter
- Host: GitHub
- URL: https://github.com/blfpd/lilydown
- Owner: blfpd
- License: gpl-3.0
- Created: 2023-11-19T18:41:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T18:42:46.000Z (over 2 years ago)
- Last Synced: 2025-10-27T13:59:34.490Z (8 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LilyDown
File format to store short (bagpipe) pieces into markdown files for convenience
```
---
title = "Scotland the Brave"
music_type = "March"
time_signature = "4/4"
composer = "Trad."
arranger = ""
instrument = "bagpipe"
source = "SC v2"
---
```tex
\partial 8 e8
\grg a4 \taor a8.[ b16] \dblc c8[ \gre a8] \dblc c8[ e8]
\bar "|."
```
```
## Usage
```rust
use lilydown::{parse, extract};
```