Collapsable menu for GitHub wiki
Collapsable menu for GitHub wiki

Intro If you ever wanted nice looking collapsible side menu on github wiki pages like this: then keep reading 😉 Solution Solution is very simple, you need to use <details> and <summary> tags. See snipped bellow: <details> <summary>Core</summary> <p> [`New-Logger`](New-Logger) [`Start-Logger`](Start-Logger) [`Set-MinimumLevel`](Set-MinimumLevel) [`Close-Logger`](Close-Logger) </p> </details> You can see it in action in PoShLog wiki –... » read more

Azure Pipeline for private repository in organization
Azure Pipeline for private repository in organization

About If you need to setup Azure Devops Pipeline for private repository that is under organization then keep reading… How to I had lot of trouble setting up that pipeline, I tryed to setup different Service connections, GitHub connections, but no luck. Azure devops seemed that it’s missing some access rights to see my private... » read more