Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bookdown: Removing social media links?

I am using bookdown to write a report for a client. They like it, I like it but I don't want to have the social media links in the top right of the compiled html. Other than editing the html after build, is there any way to stop them appearing during building the report?

Thanks!

like image 862
roman Avatar asked Oct 17 '16 08:10

roman


1 Answers

Set sharing to null in config in the gitbook output format: https://bookdown.org/yihui/bookdown/html.html

bookdown::gitbook:
  config:
    sharing: null
like image 146
Yihui Xie Avatar answered Sep 30 '22 00:09

Yihui Xie