Skip to content

Commit

Permalink
docs(0.9.0): release
Browse files Browse the repository at this point in the history
  • Loading branch information
jfishe committed Mar 24, 2024
1 parent 0f0ae33 commit a91f8d3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,27 @@ and this project adheres to

## [Unreleased]

## [0.9.0] - 2024-03-24

### Added

- UltiSnips Snippets for Zettelkasten YAML:
- `type:` Type first letter to pick: note, literature, reference, or index.
- `status:` Type first letter to pick: Create, Process, or Reviewed.

### Changed

- `:VimwikiMarkdownFormat` converts to GitHub Flavored Markdown (gfm) preferred
by Vimwiki.
- `:VimwikiMarkdownFormat` preserves citations and does not process through
citeproc to separate concerns from `:VimwikiReference`.
- Post-filter `reference_citation` supports pandoc v3.1.3 and v3.1.12.3
`markdown-citations`. `pandoc --citeproc` default markdown-citations format
changed from `:::` to `:::::` before and after citations. However, tests only
support v3.1.12.3.
- `:VimwikiReference` defaults to link-citations=true and autowrap=auto.
- GitHub Actions updated to pandoc-version 3.1.12.3.

### Removed

## [0.8.0] - 2024-02-24
Expand Down Expand Up @@ -102,7 +119,8 @@ and this project adheres to

- Switch build to flit.

[unreleased]: https://github.com/jfishe/panvimwiki/compare/0.8.0...HEAD
[unreleased]: https://github.com/jfishe/panvimwiki/compare/0.9.0...HEAD
[0.9.0]: https://github.com/jfishe/panvimwiki/compare/0.8.0...0.9.0
[0.8.0]: https://github.com/jfishe/panvimwiki/compare/0.7.1...0.8.0
[0.7.1]: https://github.com/jfishe/panvimwiki/compare/0.7...0.7.1
[0.7]: https://github.com/jfishe/panvimwiki/compare/0.6...0.7
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,18 +177,17 @@ Convert citations to a reference list.
`Example.md`:

```markdown
::: {#refs .references .csl-bib-body .hanging-indent}
::::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-bloggs-jones .csl-entry}
Bloggs, A. J., and X. Y. Jones. 1959. "Title Title Title Title Title Title
Title Title Title Title." _Journal Journal Journal_.
:::
Title Title Title Title." *Journal Journal Journal*. :::

::: {#ref-chomsky-73 .csl-entry}
Chomsky, N. 1973. "Conditions on Transformations." In _A Festschrift for Morris
Halle_, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart &
Chomsky, N. 1973. "Conditions on Transformations." In *A Festschrift for Morris
Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart &
Winston.
:::
:::
:::::
```

`reference_citation < Example.md` produces:
Expand Down
11 changes: 5 additions & 6 deletions doc/panvimwiki.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,17 @@ Convert citations to a reference list.
`Example.md`:

>markdown
::: {#refs .references .csl-bib-body .hanging-indent}
::::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-bloggs-jones .csl-entry}
Bloggs, A. J., and X. Y. Jones. 1959. "Title Title Title Title Title Title
Title Title Title Title." _Journal Journal Journal_.
:::
Title Title Title Title." *Journal Journal Journal*. :::

::: {#ref-chomsky-73 .csl-entry}
Chomsky, N. 1973. "Conditions on Transformations." In _A Festschrift for Morris
Halle_, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart &
Chomsky, N. 1973. "Conditions on Transformations." In *A Festschrift for Morris
Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart &
Winston.
:::
:::
:::::
<

`reference_citation < Example.md` produces:
Expand Down

0 comments on commit a91f8d3

Please sign in to comment.