2

Githus uses gollum to renders it's wikis. It's features says that it supports _Header, _Sidebar and _Footer.

I have a wiki with _Sidebar and it works, but does github supports _Header?

Eduardo Santana
  • 5,780
  • 3
  • 19
  • 21

1 Answers1

0

but does github supports _Header?

Apparently so. See "Adding a Table of Contents to your Github Wiki"

How to Add a Header

  • Checkout your repository wiki via git. To find the URL, navigate to your wiki page in your browser and click the tab for Git Access.
  • Now that you have pulled down a local copy of your github repo wiki, create a new file in the repo called _Header.md
  • Within the newly created _Header.md file, you can add appropriate wiki syntax to your liking.
  • Add your new file to git via git add _Header.md, commit via git commit _Header.md -m "Adding new header.", and push via git push origin master.
hey
  • 2,643
  • 7
  • 29
  • 50
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • 1
    thanks for sharing this, but it doesn't seem to work. – Jamie Mason Apr 19 '18 at 15:54
  • @fold since this answer is 14 months old, maybe something has changed since then. – VonC Apr 19 '18 at 16:39
  • 1
    I just tried it again today and it is not working. `_Header` file is not shown as header in a github wiki. Only `_Footer` and `_Sidebar` is working. – Jörg Oct 23 '18 at 14:48