wiki

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

README.md (1141B)


      1 # Wiki
      2 
      3 ## Cloning
      4 
      5 ```
      6 git clone git@github.com:al1-ce/wiki.al1-ce.dev
      7 cd wiki.al1-ce.dev
      8 git lfs pull
      9 ```
     10 
     11 ## Building
     12 
     13 run `make`
     14 
     15 ## How to `wht`
     16 
     17 - No newline at start or end of file
     18 - Newline after title
     19 - Newline before title
     20 <!-- - No newline before or after code block -->
     21 - Instead of code block surround text with newlines and
     22     add a single space before
     23 - 1. `title ____`
     24 - 2. `[000] Index ___`
     25 - 3. `[...] section ___`
     26 - 4. `[...] References ___`
     27 
     28 ## Syntax
     29 
     30 Everything is mostly plain text with exception of:
     31 
     32 ```
     33 
     34 https?://.+ -> inserted as link as is
     35 
     36 @/link -> relative link, at /wiki @/page = /wiki/page
     37 %/link -> absolute wiki link, at /meta %/page = /w/page
     38 #/link -> absolute link, at /wiki #/page = /page
     39 $/link -> github link, $/nxuv/wiki = github link to it
     40 ~/link -> sourcehut link, ~/nxuv/wiki = sourcehut git link to it
     41 
     42 %%TITLE%% -> page title
     43 %%DIR%% -> directory
     44 %%FILE%% -> path without extension
     45 
     46 ```
     47 
     48 ## Fixing font blur
     49 
     50 Either of those will help. Though on some systems it will not help as much.
     51 
     52 ```css
     53 transform:translate(0.25px,0.25px)
     54 ```
     55 
     56 ```css
     57 display: inline-block;transform: translate(0,0);
     58 ```