A vscode plugin to create blogs with issue.
- Search for
github issue blog
in the VS Code extension marketplace. - Click on the link, go to the official extension marketplace, and click on download to install.
Key | Type | Notes |
---|---|---|
github-issue-blog.repo | string | repository name of github |
If this configuration is not set, when executing the command, it will prompt the user to choose the repository associated with their GitHub account and configure it automatically.
- Github Issue Blog: Create Issue
- Github Issue Blog: Update Issue
- Github Issue Blog: Sync Issue
-
Global command
You can use
ctrl+shift+p
to open the command palette, then typeissue blog
to see these two commands.command+shift+p
on Mac -
Explorer context menu
In File Explorer, you can right-click on an
md
file and see these two commands. If you click on something other than anmd
file, you will not see it. -
Editor context menu
If the currently open editor is a markdown file, including unsaved draft files, right-clicking on the editor will display these two commands.
-
Editor title context menu
In the editor, right-click on one of the markdown files in the open file tabs, and you will see these two commands.
---
title: issue-blog-title
labels:
- bug
- abcd
issue_number: 24
---
## Headline
Name | Type | Notes |
---|---|---|
title | string | Title of the blog post |
labels | string[] | Labels of issue |
issue_number | number | Number of issue |
title
is required when updating and creating an issue.labels
are not mandatory, they will be automatically created if they do not exist when updating and creating an issue.issue_number
is required when updating and synchronizing an issue. When creating an issue, theissue_number
will be automatically updated to the number of the issue that is created.