update from sparkleup

This commit is contained in:
Madison Scott-Clary 2020-04-22 16:15:03 -07:00
parent 6b580f7961
commit 7071bc83ef
1 changed files with 51 additions and 3 deletions

View File

@ -68,13 +68,13 @@ This is a +{new} addition
This -{this} word is removed
I say, ~{out with the old}{in with the new}
I say, ~{out with the old}{*in* with the new}
Here !{just a comment} is a line with a comment
You can also ?{add comments to some text}(Like this)
You can also ?{add comments to some text}(Like *this*!{And comment within comments}!{You can thread them that way} (2020-04-21))
All -{new}(Redundant (Makyo)) edit marks can have comments with attributions and dates +{like this}(See? (Makyo 2020-04-22)) (though it's ignored with comments !{like this}(won't show))
All -{new}(Redundant (Makyo)) edit marks can have comments with attributions and dates +{like this}(See? (Makyo 2020-04-22)) (for single comments, just put the attribution in there !{like this}(Makyo))
Bottom text
```
@ -94,6 +94,54 @@ I get
>
> Bottom text
Using this stylehseet:
```css
/* Editing extension */
del.deletion, .substitution del {
text-decoration: line-through;
background-color: #fbb;
color: #555;
}
ins.addition, .substitution ins {
text-decoration: none;
background-color: #d4fcbc;
}
q.comment {
display: block;
float: right;
width: 33%;
border: 1px solid #ccc;
margin-left: 0.5rem;
padding: 0.5rem;
clear: both;
}
q.comment q.comment {
float: none;
width: auto;
}
q.comment .attribution, q.comment .date {
font-size: 10pt;
display: inline-block;
float: right;
clear: both;
}
q.comment::before, q.comment::after {
content: "";
display: table;
clear: both;
}
p {
clear: both;
}
```
Which will let me mark potential changes I'm not sure about and leave notes to myself in the things I write, something I used to do with HTML comments.
So I hope that gives an idea of the types of things that I've been working on that, while not exactly writing in and of themselves, are things that can be used within the context of writing.