From 0cc0562631933215d628322e7d364b75f740bfc1 Mon Sep 17 00:00:00 2001
From: Madison Scott-Clary new edit marks can have comments with attributions and dates like thisRedundantMakyo
See?Makyo2020-04-22
(for single comments, just put the attribution in there like thisMakyo
)
Bottom text
+Using this stylehseet:
+/* 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.
Thanks for peeking in!