Skip to content

Instantly share code, notes, and snippets.

@brikis98
Last active August 29, 2015 14:14
Show Gist options
  • Save brikis98/62f62ba8c0970b5b2c01 to your computer and use it in GitHub Desktop.
Save brikis98/62f62ba8c0970b5b2c01 to your computer and use it in GitHub Desktop.
AsciiDoc showing too much vertical space in lists within quote blocks
Once you go from storing data on a single server to multiple servers,
you are dealing with a _distributed system_. All distributed
systems are subject to the CAP theorem, which states the following:
[quote, '[<<cap-theorem-2014,CAP Theorem 2014>>]']
____
It is impossible for a distributed computer system to simultaneously
provide all three of the following guarantees:
. Consistency (all nodes see the same data at the same time)
. Availability (a guarantee that every request receives a response about whether it succeeded or failed)
. Partition tolerance (the system continues to operate despite arbitrary message loss or failure of part of the system)
____
Consistency &#40;C&#41;, Availability (A), Partition Tolerance (P): pick two.
In practice, it's always possible that a server will fail or the
network will drop messages, so all distributed systems _must_
pick P&mdash;that is, you can't sacrifice partition tolerance
[<<hale-2010,Hale 2010>>]. So the real
question is, in the presence of network partitions, do you maintain
consistency or availability?
@brikis98
Copy link
Author

brikis98 commented Feb 3, 2015

Here is how the AsciiDoc above looks in a PDF:

Issues with the rendering of the attribution and cite title

Notice how there is too much vertical spacing around the list and between the list items.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment