5

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!

roman
  • 1,340
  • 9
  • 33

1 Answers1

13

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

bookdown::gitbook:
  config:
    sharing: null
Yihui Xie
  • 28,913
  • 23
  • 193
  • 419