<p>Adds the CMark source into the plugin tree to be used when there is no <code>libcmark</code> package available using <code>pkg-config</code>. At present, my distro only ships the <code>cmark</code> utility but not the accompanying library or development packages, as well I do not believe msys2 provides a CMark package for Windows, so for now it will remain embedded as a backup.</p>
<p>The version embedded is v0.28.3, from commit 9f8ef820301951f36301c1a40d036cafeaa78619. A few trivial changes were made to allow libcmark to compile without its original CMake infrastructure. Only <code>cmark.h</code> and <code>cmark_version.h</code> were modified.</p>
<p>TODO: create a patch so the simple changes to upstream CMark library can be mechanically applied to newer versions.</p>
<p>All future complaints/requests about supporting various Markdown extensions should be addressed directly to the <a href="http://commonmark.org/" rel="nofollow">CommonMark Project</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>  <a href='https://github.com/geany/geany-plugins/pull/747'>https://github.com/geany/geany-plugins/pull/747</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Markdown: replace Discount and PEG Markdown with CMark</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-0">build/markdown.m4</a>
    (54)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-1">markdown/.gitignore</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-2">markdown/Makefile.am</a>
    (8)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-3">markdown/cmark/COPYING</a>
    (170)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-4">markdown/cmark/Makefile.am</a>
    (43)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-5">markdown/cmark/blocks.c</a>
    (1218)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-6">markdown/cmark/buffer.c</a>
    (279)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-7">markdown/cmark/buffer.h</a>
    (82)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-8">markdown/cmark/case_fold_switch.inc</a>
    (4327)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-9">markdown/cmark/chunk.h</a>
    (120)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-10">markdown/cmark/cmark.c</a>
    (43)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-11">markdown/cmark/cmark.h</a>
    (647)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-12">markdown/cmark/cmark_ctype.c</a>
    (44)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-13">markdown/cmark/cmark_ctype.h</a>
    (26)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-14">markdown/cmark/cmark_version.h</a>
    (7)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-15">markdown/cmark/commonmark.c</a>
    (475)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-16">markdown/cmark/config.h.in</a>
    (76)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-17">markdown/cmark/entities.inc</a>
    (2138)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-18">markdown/cmark/houdini.h</a>
    (51)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-19">markdown/cmark/houdini_href_e.c</a>
    (100)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-20">markdown/cmark/houdini_html_e.c</a>
    (66)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-21">markdown/cmark/houdini_html_u.c</a>
    (149)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-22">markdown/cmark/html.c</a>
    (341)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-23">markdown/cmark/inlines.c</a>
    (1342)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-24">markdown/cmark/inlines.h</a>
    (21)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-25">markdown/cmark/iterator.c</a>
    (121)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-26">markdown/cmark/iterator.h</a>
    (27)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-27">markdown/cmark/latex.c</a>
    (453)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-28">markdown/cmark/main.c</a>
    (189)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-29">markdown/cmark/man.c</a>
    (252)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-30">markdown/cmark/node.c</a>
    (858)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-31">markdown/cmark/node.h</a>
    (93)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-32">markdown/cmark/parser.h</a>
    (39)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-33">markdown/cmark/references.c</a>
    (146)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-34">markdown/cmark/references.h</a>
    (41)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-35">markdown/cmark/render.c</a>
    (185)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-36">markdown/cmark/render.h</a>
    (50)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-37">markdown/cmark/scanners.c</a>
    (13513)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-38">markdown/cmark/scanners.h</a>
    (55)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-39">markdown/cmark/scanners.re</a>
    (320)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-40">markdown/cmark/utf8.c</a>
    (317)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-41">markdown/cmark/utf8.h</a>
    (24)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-42">markdown/cmark/xml.c</a>
    (170)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-43">markdown/peg-markdown/LICENSE</a>
    (88)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-44">markdown/peg-markdown/Makefile.am</a>
    (29)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-45">markdown/peg-markdown/README</a>
    (1)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-46">markdown/peg-markdown/README.markdown</a>
    (213)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-47">markdown/peg-markdown/markdown_lib.c</a>
    (181)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-48">markdown/peg-markdown/markdown_lib.h</a>
    (27)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-49">markdown/peg-markdown/markdown_output.c</a>
    (1121)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-50">markdown/peg-markdown/markdown_parser.leg</a>
    (774)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-51">markdown/peg-markdown/markdown_peg.h</a>
    (72)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-52">markdown/peg-markdown/odf.c</a>
    (181)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-53">markdown/peg-markdown/odf.h</a>
    (11)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-54">markdown/peg-markdown/parsing_functions.c</a>
    (117)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-55">markdown/peg-markdown/parsing_functions.h</a>
    (17)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-56">markdown/peg-markdown/peg-0.1.9/Makefile.am</a>
    (10)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-57">markdown/peg-markdown/peg-0.1.9/compile.c</a>
    (717)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-58">markdown/peg-markdown/peg-0.1.9/leg.c</a>
    (1209)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-59">markdown/peg-markdown/peg-0.1.9/leg.leg</a>
    (292)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-60">markdown/peg-markdown/peg-0.1.9/tree.c</a>
    (352)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-61">markdown/peg-markdown/peg-0.1.9/tree.h</a>
    (108)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-62">markdown/peg-markdown/peg-0.1.9/version.h</a>
    (3)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-63">markdown/peg-markdown/utility_functions.c</a>
    (206)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-64">markdown/peg-markdown/utility_functions.h</a>
    (74)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-65">markdown/src/Makefile.am</a>
    (15)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/geany/geany-plugins/pull/747/files#diff-66">markdown/src/viewer.c</a>
    (36)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/geany/geany-plugins/pull/747.patch'>https://github.com/geany/geany-plugins/pull/747.patch</a></li>
  <li><a href='https://github.com/geany/geany-plugins/pull/747.diff'>https://github.com/geany/geany-plugins/pull/747.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/geany/geany-plugins/pull/747">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABDrJ8_RKgtdaF-IqXPs73jQwJGETDe9ks5t1m4igaJpZM4ULx1l">mute the thread</a>.<img src="https://github.com/notifications/beacon/ABDrJ5sk_PuRx9AxUM7ZkB0gE_eRO32Rks5t1m4igaJpZM4ULx1l.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","potentialAction":{"@type":"ViewAction","target":"https://github.com/geany/geany-plugins/pull/747","url":"https://github.com/geany/geany-plugins/pull/747","name":"View Pull Request"},"description":"View this Pull Request on GitHub","publisher":{"@type":"Organization","name":"GitHub","url":"https://github.com"}}</script>
<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/geany/geany-plugins","title":"geany/geany-plugins","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/geany/geany-plugins"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Markdown: replace Discount and PEG Markdown with CMark (#747)"}],"action":{"name":"View Pull Request","url":"https://github.com/geany/geany-plugins/pull/747"}}}</script>
<script type="application/ld+json">{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"hideOriginalBody": "false",
"originator": "37567f93-e2a7-4e2a-ad37-a9160fc62647",
"title": "Markdown: replace Discount and PEG Markdown with CMark (#747)",
"sections": [
{
"text": "",
"activityTitle": "**Matthew Brush**",
"activityImage": "https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png",
"activitySubtitle": "@codebrainz",
"facts": [

]
},
{
"title": "Commit Summary",
"facts": [
{
"name": "2764878",
"value": "Markdown: replace Discount and PEG Markdown with CMark"
}
]
},
{
"title": "File Changes",
"facts": [
{
"name": "Modified",
"value": "[build/markdown.m4](https://github.com/geany/geany-plugins/pull/747/files#diff-0) (54 changes)"
},
{
"name": "Modified",
"value": "[markdown/.gitignore](https://github.com/geany/geany-plugins/pull/747/files#diff-1) (3 changes)"
},
{
"name": "Modified",
"value": "[markdown/Makefile.am](https://github.com/geany/geany-plugins/pull/747/files#diff-2) (8 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/COPYING](https://github.com/geany/geany-plugins/pull/747/files#diff-3) (170 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/Makefile.am](https://github.com/geany/geany-plugins/pull/747/files#diff-4) (43 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/blocks.c](https://github.com/geany/geany-plugins/pull/747/files#diff-5) (1218 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/buffer.c](https://github.com/geany/geany-plugins/pull/747/files#diff-6) (279 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/buffer.h](https://github.com/geany/geany-plugins/pull/747/files#diff-7) (82 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/case_fold_switch.inc](https://github.com/geany/geany-plugins/pull/747/files#diff-8) (4327 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/chunk.h](https://github.com/geany/geany-plugins/pull/747/files#diff-9) (120 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/cmark.c](https://github.com/geany/geany-plugins/pull/747/files#diff-10) (43 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/cmark.h](https://github.com/geany/geany-plugins/pull/747/files#diff-11) (647 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/cmark_ctype.c](https://github.com/geany/geany-plugins/pull/747/files#diff-12) (44 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/cmark_ctype.h](https://github.com/geany/geany-plugins/pull/747/files#diff-13) (26 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/cmark_version.h](https://github.com/geany/geany-plugins/pull/747/files#diff-14) (7 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/commonmark.c](https://github.com/geany/geany-plugins/pull/747/files#diff-15) (475 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/config.h.in](https://github.com/geany/geany-plugins/pull/747/files#diff-16) (76 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/entities.inc](https://github.com/geany/geany-plugins/pull/747/files#diff-17) (2138 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/houdini.h](https://github.com/geany/geany-plugins/pull/747/files#diff-18) (51 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/houdini_href_e.c](https://github.com/geany/geany-plugins/pull/747/files#diff-19) (100 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/houdini_html_e.c](https://github.com/geany/geany-plugins/pull/747/files#diff-20) (66 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/houdini_html_u.c](https://github.com/geany/geany-plugins/pull/747/files#diff-21) (149 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/html.c](https://github.com/geany/geany-plugins/pull/747/files#diff-22) (341 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/inlines.c](https://github.com/geany/geany-plugins/pull/747/files#diff-23) (1342 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/inlines.h](https://github.com/geany/geany-plugins/pull/747/files#diff-24) (21 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/iterator.c](https://github.com/geany/geany-plugins/pull/747/files#diff-25) (121 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/iterator.h](https://github.com/geany/geany-plugins/pull/747/files#diff-26) (27 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/latex.c](https://github.com/geany/geany-plugins/pull/747/files#diff-27) (453 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/main.c](https://github.com/geany/geany-plugins/pull/747/files#diff-28) (189 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/man.c](https://github.com/geany/geany-plugins/pull/747/files#diff-29) (252 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/node.c](https://github.com/geany/geany-plugins/pull/747/files#diff-30) (858 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/node.h](https://github.com/geany/geany-plugins/pull/747/files#diff-31) (93 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/parser.h](https://github.com/geany/geany-plugins/pull/747/files#diff-32) (39 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/references.c](https://github.com/geany/geany-plugins/pull/747/files#diff-33) (146 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/references.h](https://github.com/geany/geany-plugins/pull/747/files#diff-34) (41 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/render.c](https://github.com/geany/geany-plugins/pull/747/files#diff-35) (185 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/render.h](https://github.com/geany/geany-plugins/pull/747/files#diff-36) (50 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/scanners.c](https://github.com/geany/geany-plugins/pull/747/files#diff-37) (13513 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/scanners.h](https://github.com/geany/geany-plugins/pull/747/files#diff-38) (55 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/scanners.re](https://github.com/geany/geany-plugins/pull/747/files#diff-39) (320 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/utf8.c](https://github.com/geany/geany-plugins/pull/747/files#diff-40) (317 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/utf8.h](https://github.com/geany/geany-plugins/pull/747/files#diff-41) (24 changes)"
},
{
"name": "Added",
"value": "[markdown/cmark/xml.c](https://github.com/geany/geany-plugins/pull/747/files#diff-42) (170 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/LICENSE](https://github.com/geany/geany-plugins/pull/747/files#diff-43) (88 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/Makefile.am](https://github.com/geany/geany-plugins/pull/747/files#diff-44) (29 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/README](https://github.com/geany/geany-plugins/pull/747/files#diff-45) (1 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/README.markdown](https://github.com/geany/geany-plugins/pull/747/files#diff-46) (213 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/markdown_lib.c](https://github.com/geany/geany-plugins/pull/747/files#diff-47) (181 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/markdown_lib.h](https://github.com/geany/geany-plugins/pull/747/files#diff-48) (27 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/markdown_output.c](https://github.com/geany/geany-plugins/pull/747/files#diff-49) (1121 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/markdown_parser.leg](https://github.com/geany/geany-plugins/pull/747/files#diff-50) (774 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/markdown_peg.h](https://github.com/geany/geany-plugins/pull/747/files#diff-51) (72 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/odf.c](https://github.com/geany/geany-plugins/pull/747/files#diff-52) (181 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/odf.h](https://github.com/geany/geany-plugins/pull/747/files#diff-53) (11 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/parsing_functions.c](https://github.com/geany/geany-plugins/pull/747/files#diff-54) (117 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/parsing_functions.h](https://github.com/geany/geany-plugins/pull/747/files#diff-55) (17 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/Makefile.am](https://github.com/geany/geany-plugins/pull/747/files#diff-56) (10 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/compile.c](https://github.com/geany/geany-plugins/pull/747/files#diff-57) (717 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/leg.c](https://github.com/geany/geany-plugins/pull/747/files#diff-58) (1209 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/leg.leg](https://github.com/geany/geany-plugins/pull/747/files#diff-59) (292 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/tree.c](https://github.com/geany/geany-plugins/pull/747/files#diff-60) (352 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/tree.h](https://github.com/geany/geany-plugins/pull/747/files#diff-61) (108 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/peg-0.1.9/version.h](https://github.com/geany/geany-plugins/pull/747/files#diff-62) (3 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/utility_functions.c](https://github.com/geany/geany-plugins/pull/747/files#diff-63) (206 changes)"
},
{
"name": "Removed",
"value": "[markdown/peg-markdown/utility_functions.h](https://github.com/geany/geany-plugins/pull/747/files#diff-64) (74 changes)"
},
{
"name": "Modified",
"value": "[markdown/src/Makefile.am](https://github.com/geany/geany-plugins/pull/747/files#diff-65) (15 changes)"
},
{
"name": "Modified",
"value": "[markdown/src/viewer.c](https://github.com/geany/geany-plugins/pull/747/files#diff-66) (36 changes)"
}
]
}
],
"potentialAction": [
{
"name": "Add a comment",
"@type": "ActionCard",
"inputs": [
{
"isMultiLine": true,
"@type": "TextInput",
"id": "IssueComment",
"isRequired": false
}
],
"actions": [
{
"name": "Comment",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"IssueComment\",\n\"repositoryFullName\": \"geany/geany-plugins\",\n\"issueId\": 747,\n\"IssueComment\": \"{{IssueComment.value}}\"\n}"
}
]
},
{
"name": "Close pull request",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"PullRequestClose\",\n\"repositoryFullName\": \"geany/geany-plugins\",\n\"pullRequestId\": 747\n}"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/geany/geany-plugins/pull/747"
}
],
"@type": "OpenUri",
"name": "View on GitHub"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/geany/geany-plugins/pull/747.patch"
}
],
"@type": "OpenUri",
"name": "View patch"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/geany/geany-plugins/pull/747.diff"
}
],
"@type": "OpenUri",
"name": "View diff"
},
{
"name": "Unsubscribe",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"MuteNotification\",\n\"threadId\": 338632037\n}"
}
],
"themeColor": "26292E"
}</script>