fakeyanss / til

Home Page:https://foreti.me/til/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Things I Learn

TILs Count last commit License: MIT Website Twitter: fakeYanss

Personal Wiki of Interesting things I learn every day at the intersection of software development, computer science & stuff.

Categories


Java

Makefile

Miscellaneous

Python

Usage

  1. install docsify
npm i docsify-cli -g
  1. create git repo, and init docsify
docsify init docs
  1. customize index.html, just like my index.html

  2. preview your writing

docsify serve docs
  1. install docsify-tools, for auto generate sidebar
npm i docsify-tools -g

generate sidebar

docsify-auto-sidebar -d docs

you can craete a git hook pre-commit, docsify-auto-sidebar will generate _narbar into sidebar, which is not expected, we can remove it manually

docsify-auto-sidebar -d docs

sed -i "" "/_navbar/d" docs/_sidebar.md # mac
sed -i "/_navbar/d" docs/_sidebar.md # linux

python build.py

git add .

Author

👤 FakeYanss

About

TIL is inspired by Bhupesh-V/til.

About

https://foreti.me/til/

License:MIT License


Languages

Language:Python 100.0%