https://github.com/transnano/markdown-to-confluence-vscode
https://github.com/transnano/markdown-to-confluence-vscode
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/transnano/markdown-to-confluence-vscode
- Owner: transnano
- License: mit
- Created: 2020-07-15T10:59:03.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T14:32:53.000Z (8 months ago)
- Last Synced: 2024-10-29T17:55:45.086Z (8 months ago)
- Language: TypeScript
- Size: 4.42 MB
- Stars: 20
- Watchers: 4
- Forks: 6
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - transnano/markdown-to-confluence-vscode - (TypeScript)
README
# Convert markdown to confluence(atlassian wiki markup) for VSCode Extension
[](https://marketplace.visualstudio.com/items?itemName=t-nano.markdown-to-confluence-vscode) [](https://marketplace.visualstudio.com/items?itemName=t-nano.markdown-to-confluence-vscode) [](https://marketplace.visualstudio.com/items?itemName=t-nano.markdown-to-confluence-vscode)

## Features
Convert markdown to confluence(atlassian wiki markup).
From:
````markdown
# Convert markdown to confluence(atlassian wiki markup) for VSCode Extension
Repository
[transnano/markdown-to-confluence-vscode](https://github.com/transnano/markdown-to-confluence-vscode)```sh
$ echo 'hello'
hello
```
````To:
```wiki
h1. Convert markdown to confluence(atlassian wiki markup) for VSCode ExtensionRepository
[transnano/markdown-to-confluence-vscode|https://github.com/transnano/markdown-to-confluence-vscode]{code:collapse=false|language=bash|linenumbers=true|theme=Confluence}
$ echo 'hello'
hello
{code}
```## Command (Usage)
Using Command Palette ( `CMD/CTRL + Shift + P` )
There are two methods following:
### 1. Clipboard
1. `CMD/CTRL + Shift + P` -> `md2confl: Convert markdown to confluence and Copy to clipboard`
2. Paste to the Confluence### 2. Window(Dialog)
1. `CMD/CTRL + Shift + P` -> `md2confl: Convert markdown to confluence and Open window`
2. Copy text from the window
3. Paste to the Confluence## Configuration
See details: [Code Block Macro | Confluence Data Center and Server 7.10 | Atlassian Documentation](https://confluence.atlassian.com/doc/code-block-macro-139390.html).
item | type | default
--------------- | ------- | ----------
collapse | boolean | false
showLineNumbers | boolean | true
theme | string | Confluence### 1. md2confl.codeBlock.collapse
If selected, the code macro's content will be collapsed upon visiting or refreshing the Confluence page.
### 2. md2confl.codeBlock.showLineNumbers
If selected, line numbers will be shown to the left of the lines of code.
### 3. md2confl.codeBlock.theme
Specifies the color scheme used for displaying your code block.
- **DJango**
- **Emacs**
- **FadeToGrey**
- **Midnight**
- **RDark**
- **Eclipse**
- **Confluence**## Release Notes
Update infomation.
Ref: [CHANGELOG.md](https://github.com/transnano/markdown-to-confluence-vscode/blob/main/CHANGELOG.md)
## Special thanks
[kenchan0130/markdown-to-atlassian-wiki-markup: Convert markdown to atlassian wiki markup - v4.0.1](https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup/tree/v4.0.1) that is released under the MIT License, see [LICENSE](https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup/blob/v4.0.1/LICENSE).
~~forked it and extend checkbox for list-item.~~