Update history conversion so it works from MD ~> Website
This commit is contained in:
parent
47649066b5
commit
0614d2f966
|
@ -6,8 +6,8 @@
|
|||
|
||||
### Bug Fixes
|
||||
|
||||
* Properly prefix links in site template with URL or baseurl depending upon
|
||||
need. (#2319)
|
||||
* Properly prefix links in site template with URL or baseurl depending upon
|
||||
need. (#2319)
|
||||
|
||||
### Development Fixes
|
||||
|
||||
|
@ -17,19 +17,19 @@
|
|||
|
||||
### Bug Fixes
|
||||
|
||||
* Correct use of `url` and `baseurl` in the site template. (#2317)
|
||||
* Default `baseurl` to `""` (#2317)
|
||||
* Correct use of `url` and `baseurl` in the site template. (#2317)
|
||||
* Default `baseurl` to `""` (#2317)
|
||||
|
||||
### Site Enhancements
|
||||
|
||||
* Correct docs for the `gist` plugin so it always includes the username. (#2314)
|
||||
* Clarify new (defaults, `where` filter) features in docs (#2316)
|
||||
* Correct docs for the `gist` plugin so it always includes the username. (#2314)
|
||||
* Clarify new (defaults, `where` filter) features in docs (#2316)
|
||||
|
||||
## 2.0.1 / 2014-05-06
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Require `kramdown` gem instead of `maruku` gem
|
||||
* Require `kramdown` gem instead of `maruku` gem
|
||||
|
||||
## 2.0.0 / 2014-05-06
|
||||
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -30,7 +30,7 @@ def gem_file
|
|||
end
|
||||
|
||||
def normalize_bullets(markdown)
|
||||
markdown.gsub(/\s{2}\*{1}/, "-")
|
||||
markdown.gsub(/\n\s{2}\*{1}/, "\n-")
|
||||
end
|
||||
|
||||
def linkify_prs(markdown)
|
||||
|
|
|
@ -5,9 +5,23 @@ permalink: "/docs/history/"
|
|||
prev_section: contributing
|
||||
---
|
||||
|
||||
## 2.0.2 / 2014-05-07
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Correct use of `url` and `baseurl` in the site template. ([#2317]({{ site.repository }}/issues/2317))
|
||||
* Default `baseurl` to `""` ([#2317]({{ site.repository }}/issues/2317))
|
||||
|
||||
### Site Enhancements
|
||||
|
||||
- Correct docs for the `gist` plugin so it always includes the username. ([#2314]({{ site.repository }}/issues/2314))
|
||||
- Clarify new (defaults, `where` filter) features in docs ([#2316]({{ site.repository }}/issues/2316))
|
||||
|
||||
## 2.0.1 / 2014-05-06
|
||||
|
||||
### Bug Fixes- Require `kramdown` gem instead of `maruku` gem
|
||||
### Bug Fixes
|
||||
|
||||
- Require `kramdown` gem instead of `maruku` gem
|
||||
|
||||
## 2.0.0 / 2014-05-06
|
||||
|
||||
|
|
Loading…
Reference in New Issue