R语言 如何将“入门”移动到pkgdown中的文章

zphenhs4  于 2022-12-25  发布在  其他
关注(0)|答案(1)|浏览(164)

通常,pkgdown网站在导航栏中有一个“开始”部分。
然而,我得到的用户反馈是,人们只看自述文件中的示例,然后点击文章,甚至没有注意到这一节。
“入门”文章来自与软件包同名的小插图(参见https://pkgdown.r-lib.org/reference/build_articles.html#get-started)。

是否有办法将“Get started”导航栏项目移动到名为“Get started”的文章中?

相关:https://github.com/r-lib/pkgdown/issues/1405

y1aodyip

y1aodyip1#

按照参考链接中Hadley的建议,我创建了一个名为foo的新包,添加了两个玩具小插图foobar,并使用_pkgdown.yml"Get started"小插图从navbar部分移到articles部分。即,按照文档从navbar结构中删除intro,并在articles部分下添加入门简介:

url: ~
template:
  bootstrap: 5

navbar:
  structure:
    left:  [reference, articles, tutorials, news]
    right: [search, github]
  components:
    articles:
      text: Articles
      menu:
      - text: Get started
        href: articles/foo.html
      - text: Other
        href: articles/bar.html

相关问题