Skip to content

Releases: mochimochiki/hugo-theme-vivliocli

v0.22.0

31 Aug 11:12
Compare
Choose a tag to compare

Features

  • _pdf.mdに記載のプロパティ情報を文書で使うためのショートコードを追加しました by @tn-sh in #93
  • "<-" によるセルの左方向マージ #94

Full Changelog: v0.21.1...v0.22.0

v0.21.1

29 Jan 13:47
Compare
Choose a tag to compare

Fixes

  • Enable img tag images to zoom

Full Changelog: v0.21.0...v0.21.1

v0.21.0

20 Jan 15:06
Compare
Choose a tag to compare

Fixes

Build Error Occurring with Hugo v0.114 or later #92

Full Changelog: v0.20.3...v0.21.0

v0.20.3

12 Nov 08:43
Compare
Choose a tag to compare

Full Changelog: v0.20.2...v0.20.3

Features

support zoom_image option #91

v0.20.2

08 Nov 14:26
Compare
Choose a tag to compare

Full Changelog: v0.20.1...v0.20.2

Features

support mix size printing #90

v0.20.1

20 Aug 06:07
Compare
Choose a tag to compare

Fixes

  • Relax restrictions on column code notation #88

Full Changelog: v0.20.0...v0.20.1

v0.20.0

06 Aug 04:38
Compare
Choose a tag to compare

Action Required for Breaking Changes

We made the following breaking changes in v0.20.0.

Allow relative links from _index.md to be written in the same way as regular pages #86

Relative links from _index.md for section pages can now be written in the same way as regular pages. This makes creating links easier. If you have already written relative path links from _index.md , you will need to rewrite the links to the same format as regular pages.

You can make link replacement a little easier by running a powershell script like this: However, the _index.md of the home page will also be replaced, so be careful not to change it by mistake. Also, be sure to check the link after replacement.

$scriptPath = $MyInvocation.MyCommand.Path
$scriptDir = Split-Path -Parent $scriptPath
Push-Location $scriptDir

$markdownFiles = Get-ChildItem -Filter _index.md -Recurse

foreach ($file in $markdownFiles) {
  $content = Get-Content -Encoding utf8 $file.FullName
  if ($content -match '\[(.*?)\]\((?!http)([^()]+)\)') {
    $updatedContent = $content -creplace '\[(.*?)\]\((?!http)([^()]+)\)', '[$1](../$2)'
    $updatedContent | Out-File -Encoding utf8 $file.FullName | Set-Content -Path $file.FullName -Encoding Byte
  }
}

Or if you want the same behavior as before, you can configure config.toml like this:

legacy_index_link = true

Features

  • Show path of source file when in server mode #87
  • Allow relative links from _index.md to be written in the same way as regular pages #86

Fixes

  • Broken link in render-image when image path is a URL starting with http or https #85

Full Changelog: v0.19.1...v0.20.0

v0.19.1

01 Jul 05:12
2856f33
Compare
Choose a tag to compare

What's Changed

  • GitHub上のMarkdownなどを参照する際にリンクがhtmlに変換されてしまう問題を修正 by @tn-sh in #84

New Contributors

  • @tn-sh made their first contribution in #84

Full Changelog: v0.19.0...v0.19.1

v0.19.0

23 Jun 00:14
Compare
Choose a tag to compare

Features

  • support .md suffix link in markdown #82
  • support "now" shortcode #83

Full Changelog: v0.18.0...v0.19.0

v0.18.0

15 May 09:04
15d6190
Compare
Choose a tag to compare

Features

support .md suffix link in markdown #82

Full Changelog: v0.17.0...v0.18.0