DOCS: Add basic styles for tables and resources section to Changeset docs - https://github.com/citizenos/citizenos-fe/issues/535

This commit is contained in:
Mikk Andresen 2021-04-06 22:07:36 +03:00 committed by webzwo0i
parent e483b91916
commit 78ea888cb7
2 changed files with 27 additions and 7 deletions

View file

@ -148,4 +148,9 @@ This is an atext. An atext has two parts: text and attribs. The text is just the
The attribs are again a bunch of operators like .ops in the changeset was. But these operators are only + operators. They describe which part of the text has which attributes
For more information see /doc/easysync/easysync-notes.txt in the source.
## Resources / further reading
Detailed information about the changesets & Easysync protocol:
* Easysync Protocol - [/doc/easysync/easysync-notes.pdf](https://github.com/ether/etherpad-lite/blob/develop/doc/easysync/easysync-notes.pdf)
* Etherpad and EasySync Technical Manual - [/doc/easysync/easysync-full-description.pdf](https://github.com/ether/etherpad-lite/blob/develop/doc/easysync/easysync-full-description.pdf)

View file

@ -33,3 +33,18 @@ code{
img {
max-width: 100%;
}
table, th, td {
text-align: left;
border: 1px solid gray;
border-collapse: collapse;
}
th {
padding: 0.5em;
background: #EEE;
}
td {
padding: 0.5em;
}