github-issues-export 0.1.5

Export GitHub issues to markdown files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub const TEMPLATE: &str = r#"# [{{issue.title}}]({{issue.html_url}})

> state: **{{issue.state}}** opened by: **{{issue.user.login}}** on: **{{issue.created_at}}**

{{{issue.body}}}

### Comments
{{#each comments}}
---
> from: [**{{user.login}}**]({{html_url}}) on: **{{created_at}}**

{{{body}}}
{{~/each}}
"#;