我最近正在学习构建一个十六进制主题,但是我对__()函数感到困惑。我在hexo文档中找不到答案。我不知道这是内置的还是什么?

此代码来自theme-minos:

<span class="column is-narrow">
  <% let words = word_count(post._content); %>
  <% let time = duration((words / 150.0) * 60, 'seconds') %>
  <%= `${ time.humanize() } ${ __('article.read')} (${ __('article.about') } ${ words } ${ __('article.words') })` %>
</span>

谁能帮助我?

最佳答案

最后,我在hexo文档中找到了答案。



查看更多:https://hexo.io/docs/internationalization.html

09-19 23:59