Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 513 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 513 Bytes

A structure as named layers, for searching use.

OLD type of tree:

ROOT
+---page
|   +---news
|   |   +---recent
|   |   |   +---newB
|   |   +---hot
|   |       +---newA
|   +---games
|       +---zelda
+---users
|   +---space
+---admin
    +---users

NEW type of tree:

ROOT
├─ page
│  ├─ news
│  │  ├─ recent
│  │  │  └─ newB
│  │  └─ hot
│  │     └─ newA
│  └─ games
│     └─ zelda
├─ users
│  └─ space
└─ admin
   └─ users