Skip to content

Commit 8552ca1

Browse files
committed
Bump to version v0.5
1 parent 60359d5 commit 8552ca1

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

README.org

+6
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,12 @@ The common =ox-hugo= export bindings are:
155155
Do =M-x customize-group=, and select =org-export-hugo= to see the
156156
available customization options for this package.
157157
* Changelog
158+
** v0.5 <2017-11-06 Mon>
159+
*** Features
160+
- Export TOC as a Markdown ordered list. See [[https://ox-hugo.scripter.co/doc/org-toc][Table of
161+
Contents]].
162+
- =#+ATTR_HTML= above http/https/ftp links is now supported (useful
163+
for specifying the =target=, =rel=, attributes, for example).
158164
** v0.4.1 <2017-10-29 Sun>
159165
*** Features
160166
- Support specifying the =:height= parameter in the =#+ATTR_HTML=

doc/config.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ disableFastRender = true # Hugo 0.30
5050
# where foo = section name without double quotes for which we want to have
5151
# the custom permalinks. If foo is 'posts', it will apply to content in
5252
# content/posts/ dir. The "bar" portion is how you want the links to look.
53-
doc = "/doc/:slug/"
53+
# https://gohugo.io/content-management/urls/#permalink-configuration-values
54+
doc = "/doc/:filename/"
5455
test = "/test/:slug/"
5556

5657
[params]

doc/content/doc/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ draft = false
66
identifier = "changelog"
77
+++
88

9+
## v0.5 <span class="timestamp-wrapper"><span class="timestamp">&lt;2017-11-06 Mon&gt;</span></span> {#v0-dot-5}
10+
11+
12+
### Features {#features}
13+
14+
- Export TOC as a Markdown ordered list. See [Table of
15+
Contents](/doc/org-toc).
16+
- `#+ATTR_HTML` above http/https/ftp links is now supported (useful
17+
for specifying the `target`, `rel`, attributes, for example).
18+
19+
920
## v0.4.1 <span class="timestamp-wrapper"><span class="timestamp">&lt;2017-10-29 Sun&gt;</span></span> {#v0-dot-4-dot-1}
1021

1122

doc/ox-hugo-manual.org

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
:PROPERTIES:
1414
:CUSTOM_ID: changelog
1515
:END:
16+
** v0.5 <2017-11-06 Mon>
17+
*** Features
18+
- Export TOC as a Markdown ordered list. See {{{doc(org-toc,Table of
19+
Contents)}}}.
20+
- =#+ATTR_HTML= above http/https/ftp links is now supported (useful
21+
for specifying the =target=, =rel=, attributes, for example).
1622
** v0.4.1 <2017-10-29 Sun>
1723
*** Features
1824
- Support specifying the =:height= parameter in the =#+ATTR_HTML=

ox-hugo.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; URL: https://ox-hugo.scripter.co
66
;; Package-Requires: ((emacs "24.5") (org "9.0"))
77
;; Keywords: Org, markdown, docs
8-
;; Version: 0.4.1
8+
;; Version: 0.5
99

1010
;;; Commentary:
1111

0 commit comments

Comments
 (0)