From 2e086644c4fabec0ccd24d586ba6f173c76f29f0 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 16 May 2020 18:18:31 +0200 Subject: [PATCH] Quote and use colouring --- README.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d5ffd4a..6863a9c 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,14 @@ ## Utilities for navigating flat trees -```bash +```sh $ pip install flat-tree ``` -Flat Trees are the core data structure that power Hypercore feeds. They -allow us to deterministically represent a tree structure as a vector. -This is particularly useful because vectors map elegantly to disk and -memory. - -Because Flat Trees are deterministic and pre-computed, there is no -overhead to using them. In effect this means that Flat Trees are a -specific way of indexing into a vector more than they are their own data -structure. This makes them uniquely efficient and convenient to -implement in a wide range of languages. +> Flat Trees are the core data structure that power Hypercore feeds. They allow +> us to deterministically represent a tree structure as a vector. This is +> particularly useful because vectors map elegantly to disk and memory. Because +> Flat Trees are deterministic and pre-computed, there is no overhead to using +> them. In effect this means that Flat Trees are a specific way of indexing +> into a vector more than they are their own data structure. This makes them +> uniquely efficient and convenient to implement in a wide range of languages.