Hi, I'm new to distill. Using distill version 1.2.
I tried to make a new distill blog and tried to render it with a Japanese title, as follows.
---
title: "日本語"
description: |
A short description of the post.
author:
- name: Nora Jones
url: https://example.com/norajones
date: 01-26-2021
output:
distill::distill_article:
self_contained: false
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
Distill is a publication format for scientific and technical writing, native to the web.
Learn more about using Distill at https://rstudio.github.io/distill.
but, when I tried to render this blog post, I get error as follow:
nchar(x) でエラー: invalid multibyte string, element 1
呼び出し: ... update_collection_listing -> strip_trailing_newline -> substring
実行が停止されました
When I change YAML from title:"日本語" to title: "English", this post works fine.
Is there any workaround for this problem?