Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
pfitzseb committed Oct 28, 2019
1 parent 265e09a commit e760457
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "GFM"
name = "GithubMarkdown"
uuid = "ecb7cac2-dae3-4a6f-a5f6-8274be99c6cb"
authors = ["Sebastian Pfitzner"]
version = "0.1.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# GFM.jl
# GithubMarkdown.jl

[![Build Status](https://travis-ci.com/pfitzseb/GFM.jl.svg?branch=master)](https://travis-ci.com/pfitzseb/GFM.jl)
[![Codecov](https://codecov.io/gh/pfitzseb/GFM.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/pfitzseb/GFM.jl)
[![Build Status](https://travis-ci.com/pfitzseb/GithubMarkdown.jl.svg?branch=master)](https://travis-ci.com/pfitzseb/GithubMarkdown.jl)
[![Codecov](https://codecov.io/gh/pfitzseb/GithubMarkdown.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/pfitzseb/GithubMarkdown.jl)

Render a markdown file (conforming to the [gfm spec](https://github.github.com/gfm/)) to an `IOBuffer` or directly to a file.

Expand Down
2 changes: 1 addition & 1 deletion src/GFM.jl → src/GithubMarkdown.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module GFM
module GithubMarkdown

export rendergfm

Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GFM
using GithubMarkdown
using Test

@testset "GFM.jl" begin
@testset "GithubMarkdown.jl" begin
@testset "html" begin
io = IOBuffer()
rendergfm(io, joinpath(@__DIR__, "test1.md"); format = "html")
Expand Down

2 comments on commit e760457

@pfitzseb
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/4804

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" e76045702dbf70e3c43df25fa3864a0002bf6030
git push origin v0.1.0

Please sign in to comment.