英文:
How can I use !expr for inline coding in qarto with python?
问题
在我的YAML标头中,我尝试使用以下方式来处理日期:
date: ""`!expr format(Sys.time(), '%B %d, %Y')`""
date-format: dddd, D MMM YYYY
lang: de
但是,当我渲染时,我收到一个错误消息:
无效日期
我是否正确使用了!expr
?
英文:
In my YAML Header I try this for date:
date: "`!expr format(Sys.time(), '%B %d, %Y')`"
date-format: dddd, D MMM YYYY
lang: de
But if I render I receive an error message:
Invalid Date
Did I use !expr in the correct way?
答案1
得分: 0
我在Quarto文档中找到了答案:
date: today
将有助于特定语言格式。
英文:
I found the answer in the Quarto documentation:
date: today
will help in the specific language format.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论