Metadata-Version: 2.1
Name: markdown_editing
Version: 0.1.0
Summary: Markdown extension for editing marks and comments
Home-page: https://github.com/makyo/markdown-editing
Author: Madison Scott-Clary
Author-email: makyo@drab-makyo.com
License: UNKNOWN
Description: # markdown-editing
        
        Editing markup and comments within Markdown.
        
        ```
        This is a +{new} addition
        
        This -{this} word is removed
        
        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)
        
        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))
        ```
        
        Leads to:
        
        ```html
        <p>This is a <ins class="addition">new</ins> addition</p>
        <p>This <del class="deletion">this</del> word is removed</p>
        <p>I say, <span class="substitution"><del>out with the old</del><ins>in with the new</ins></span></p>
        <p>Here <aside class="comment">just a comment</aside> is a line with a comment</p>
        <p>You can also <mark class="selected">add comments to some text<aside>Like this</aside></mark></p>
        <p>All <del class="deletion">new<aside>Redundant<span class="attribution">Makyo</span></aside></del> edit marks can have comments with attributions and dates <ins class="addition">like this<aside>See?<span class="attribution">Makyo</span><span class="date">2020-04-22</span></aside></ins> (though it's ignored with comments <aside class="comment">like this</aside>)</p>
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
