Skip to content

🛠 Blackfriday-Confluence is confluence wiki renderer for the Blackfriday v2 markdown processor.

License

Notifications You must be signed in to change notification settings

kentaro-m/blackfriday-confluence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blackfriday-Confluence

godoc Coverage Status Go Report Card license

Blackfriday-Confluence is confluence wiki renderer for the Blackfriday v2 markdown processor.

Features

Installation

$ go get -u github.com/kentaro-m/blackfriday-confluence

Usage

import (
  bf "github.com/russross/blackfriday/v2"
  bfconfluence "github.com/kentaro-m/blackfriday-confluence"
)

// ...
renderer := &bfconfluence.Renderer{}
extensions := bf.CommonExtensions
md := bf.New(bf.WithRenderer(renderer), bf.WithExtensions(extensions))
input := "# sample text" // # sample text
ast := md.Parse([]byte(input))
output := renderer.Render(ast) // h1. sample text
fmt.Printf("%s\n", output)
// ...

Examples

Input

# Section
Some _Markdown_ text.

## Subsection
Foobar.

### Subsubsection
Fuga

> quote

- - - -

**strong text**
~~strikethrough text~~
[Example Domain](http://www.example.com/)
![](https://blog.golang.org/gopher/header.jpg)

* list1
* list2
* list3

hoge

1. number1
2. number2
3. number3

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell

|a  |b  |c  |
|---|---|---|
|1  |2  |3  |
|4  |5  |6  |
package main
import "fmt"
func main() {
    fmt.Println("hello world")
}

Output

h1. Section
Some _Markdown_ text.

h2. Subsection
Foobar.

h3. Subsubsection
Fuga

{quote}
quote

{quote}

----
*strong text*
-strikethrough text-
[http://www.example.com/|Example Domain]
!https://blog.golang.org/gopher/header.jpg!

* list1
* list2
* list3

hoge

# number1
# number2
# number3

||First Header||Second Header||
|Content Cell|Content Cell|
|Content Cell|Content Cell|

||a||b||c||
|1|2|3|
|4|5|6|
{code:language=go}
package main
import "fmt"
func main() {
    fmt.Println("hello world")
}
{code}

Documentation

GoDoc

Contributing

Issue

  • 🐛 Report a bug
  • 🎁 Request a feature

Please use the GitHub Issue to create a issue.

Pull Request

  1. Fork it (https://github.com/kentaro-m/blackfriday-confluence/fork)
  2. Create your feature branch
  3. Run the test ($ go test) and make sure it passed ✅
  4. Commit your changes 📝
  5. Push to the branch
  6. Create a new Pull Request ❤️

Thanks

Blackfriday-Confluence is inspired by Blackfriday-LaTeX.

License

MIT

About

🛠 Blackfriday-Confluence is confluence wiki renderer for the Blackfriday v2 markdown processor.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages