1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
|
# Markdown Mode 2.8
* **Breaking changes:**
- GNU Emacs 28.1 or later is required.
- Default value of `markdown-asymmetric-header` is `t` [GH-910][]
* New Features:
- Introduce `markdown-yank-dnd-method` what action to perform on the dropped files
like `org-mode`.
- Add `.mdx` to `auto-mode-alist` [GH-930][]
* Bug fixes:
- `markdown-export` should not output stderr content to output file
- Hide wikilink markup as part of `markdown-toggle-markup-hiding` [GH-847][]
- Angle URL fontify issue which was introduced by [GH-861][] [GH-895][]
- Fix list item bound calculation when tab indentation is used [GH-904][]
- Fix `markdown-heading-at-point` at the end of line [GH-912][]
- Catch an exception when `scan-sexp` fails [GH-917][]
- `markdown-link-at-pos` should decode both control characters and spaces [GH-921][]
- `markdown-table-align` now aligns centered cells
- Fix highlightings of inline code or bold in strike-through [GH-926][]
- Fix fence code block highlighting that uses more than 3 backticks [GH-933][]
* Improvements:
- Support drag and drop features on Windows and multiple files' drag and drop
- Added cmark and cmark-gfm to the markdown command list.
- Disable `imenu-submenus-on-top` by default [GH-882][]
- Add $%*+/<=>_|&' to the markdown-mode syntax table as punctuation.
- Preserve the cursor position when entering and exiting `markdown-edit-code-block`.
[gh-847]: https://github.com/jrblevin/markdown-mode/issues/847
[gh-861]: https://github.com/jrblevin/markdown-mode/pull/861
[gh-882]: https://github.com/jrblevin/markdown-mode/issues/882
[gh-891]: https://github.com/jrblevin/markdown-mode/issues/891
[gh-895]: https://github.com/jrblevin/markdown-mode/issues/895
[gh-904]: https://github.com/jrblevin/markdown-mode/issues/904
[gh-910]: https://github.com/jrblevin/markdown-mode/issues/910
[gh-912]: https://github.com/jrblevin/markdown-mode/issues/912
[gh-917]: https://github.com/jrblevin/markdown-mode/issues/917
[gh-921]: https://github.com/jrblevin/markdown-mode/issues/921
[gh-926]: https://github.com/jrblevin/markdown-mode/issues/926
[gh-930]: https://github.com/jrblevin/markdown-mode/issues/930
[gh-933]: https://github.com/jrblevin/markdown-mode/issues/933
# Markdown Mode 2.7
* New Features:
- Variable `markdown-follow-link-functions` extends
`markdown-follow-link-at-point` similarly to Org's
`org-open-at-point-functions`, allowing other libraries to
handle links specially. [GH-780][]
- Support media handler for images and drag and drop images [GH-804][]
- Add functions to move to the beginning and end of lines
(`markdown-beginning-of-line` and `markdown-end-of-line`), and the
variable `markdown-special-ctrl-a/e`, like Org mode.
- Trailing whitespace characters for line breaks are hidden when using
`markdown-hide-markup`
- `fill-paragraph` considers GFM alert syntax [GH-838][]
- Add new flag `markdown-wiki-link-retain-case` [GH-839][]
* Bug fixes:
- Don't highlight superscript/subscript in math inline/block [GH-802][]
- Fix table alignment when a column has a seperator in code block [GH-817][]
- Fix the regexp in the download languages script [GH-827][]
- Don't hide backslashes in code blocks when using `markdown-hide-markup`
and `markdown-fontify-code-blocks-natively` together [GH-766][]
- Fix `markdown-fontify-whole-heading-line` regression [GH-848][]
- Fix using fundamental-mode issue when editting code block [GH-868][]
- Fix highlighting URL in angle brackes[GH-822][]
* Improvements:
- Apply url-unescape against URL in an inline link [GH-805][]
- Show mode toggle message only if it is called interactively
- Copy `markdown-css-paths` in the output buffer [GH-834][]
- Change temporary buffer name according to the Emacs naming convention [GH-848][]
- Mark `markdown-css-paths` safe as file local variables [GH-834][]
- Resolve style sheets in `markdown-css-paths` relative to the Markdown file
(if the path starts with `./` or `../`) [GH-855][] [GH-870][]
- Don't insert list item in code block [GH-841][]
- Don't set mouse face if `markdown-mouse-follow-link` is nil [GH-879][]
[gh-780]: https://github.com/jrblevin/markdown-mode/issues/780
[gh-802]: https://github.com/jrblevin/markdown-mode/issues/802
[gh-804]: https://github.com/jrblevin/markdown-mode/issues/804
[gh-805]: https://github.com/jrblevin/markdown-mode/issues/805
[gh-817]: https://github.com/jrblevin/markdown-mode/issues/817
[gh-822]: https://github.com/jrblevin/markdown-mode/issues/822
[gh-827]: https://github.com/jrblevin/markdown-mode/issues/827
[gh-834]: https://github.com/jrblevin/markdown-mode/issues/834
[gh-838]: https://github.com/jrblevin/markdown-mode/issues/838
[gh-839]: https://github.com/jrblevin/markdown-mode/issues/839
[gh-841]: https://github.com/jrblevin/markdown-mode/issues/841
[gh-845]: https://github.com/jrblevin/markdown-mode/issues/845
[gh-848]: https://github.com/jrblevin/markdown-mode/issues/848
[gh-855]: https://github.com/jrblevin/markdown-mode/issues/855
[gh-868]: https://github.com/jrblevin/markdown-mode/issues/868
[gh-870]: https://github.com/jrblevin/markdown-mode/issues/870
[gh-879]: https://github.com/jrblevin/markdown-mode/issues/879
# Markdown Mode 2.6
* **Breaking changes:**
- GNU Emacs 27.1 or later is required.
- Don't allow space between label and text in reference link same as CommonMark [GH-774][]
- Whitespace is required before the closing sequence of an atx header. [GH-778][]
* New Features:
- Introduce `markdown-fontify-whole-heading-line` variable for highlighting
whole header line. [GH-705][] [GH-773][]
- Backslashes in escape sequences are now treated as markup. [GH-377][]
* Improvements:
- `markdown` passes `buffer-file-name` as a parameter to
`markdown-command` when `markdown-command-needs-filename` is
`t` and `markdown-command` is a function.
- Support newer version Eldoc ships with Emacs 28.
- Don't spell-check against pandoc references. [GH-572][]
- Support tree-sitter-based major modes used by Emacs 29.
- Highlight "geo" URI scheme [GH-739][]
- `clear-image-cache` to make toggle inline image update.
- Highlight autolinks if a scheme is valid and it is not registered in markdown-uri-types
[GH-743][]
- Improve horizontal rule rendering in `markdown-view-mode` [GH-753][]
- Don't load major-mode if it isn't in `auto-mode-alist`[GH-761][]
- Improve `markdown-insert-table` prompt message [GH-771][]
- Consider `major-mode-remap-alist` to determine major-mode for code blocks [GH-787][]
- Set marker after footnote reference [GH-793][]
- Improve putting text attribute for indented blocks [GH-794][]
- Some sources of pathological behavior of markdown-match-bold and markdown-match-italic
on large blocks have been mitigated
* Bug fixes:
- Don't override table faces by link faces [GH-716][]
- Fix invalid italic fontification after bold markups[GH-731][]
- Fix `markdown-live-preview-mode` fails when `eww-auto-rename-buffer` is non-nil[GH-737][]
- Fix to mistake to handle the line as delimiter row[GH-747][]
- Fix wrong displaying horizontal rule in `markdown-view-mode` [GH-747][]
- HTML-escape title in `markdown-add-xhtml-header-and-footer` [markdown-xwidget-issue-9](https://github.com/cfclrk/markdown-xwidget/issues/9)
- Fix wrong inline link parsing that has link title[GH-762][]
- Don't treat backslashes as escapes inside literal blocks[GH-766][] [GH-768][]
- Fix `markdown-enter-key` doesn't delete empty checkbox list[GH-786][]
[gh-377]: https://github.com/jrblevin/markdown-mode/issues/377
[gh-572]: https://github.com/jrblevin/markdown-mode/issues/572
[gh-705]: https://github.com/jrblevin/markdown-mode/issues/705
[gh-716]: https://github.com/jrblevin/markdown-mode/issues/716
[gh-731]: https://github.com/jrblevin/markdown-mode/issues/731
[gh-737]: https://github.com/jrblevin/markdown-mode/issues/737
[gh-739]: https://github.com/jrblevin/markdown-mode/issues/739
[gh-743]: https://github.com/jrblevin/markdown-mode/issues/743
[gh-747]: https://github.com/jrblevin/markdown-mode/issues/747
[gh-753]: https://github.com/jrblevin/markdown-mode/issues/753
[gh-761]: https://github.com/jrblevin/markdown-mode/issues/761
[gh-762]: https://github.com/jrblevin/markdown-mode/issues/762
[gh-766]: https://github.com/jrblevin/markdown-mode/issues/766
[gh-768]: https://github.com/jrblevin/markdown-mode/pull/768
[gh-771]: https://github.com/jrblevin/markdown-mode/issues/771
[gh-773]: https://github.com/jrblevin/markdown-mode/issues/773
[gh-774]: https://github.com/jrblevin/markdown-mode/issues/774
[gh-778]: https://github.com/jrblevin/markdown-mode/issues/778
[gh-786]: https://github.com/jrblevin/markdown-mode/pull/786
[gh-787]: https://github.com/jrblevin/markdown-mode/issues/787
[gh-793]: https://github.com/jrblevin/markdown-mode/pull/793
[gh-794]: https://github.com/jrblevin/markdown-mode/issues/794
# Markdown Mode 2.5
* **Breaking changes:**
- `markdown-do` supports following link [GH-666][]
This changes behavior of `markdown-do` at table
* New features:
- Introduce `markdown-mouse-follow-link` variable [GH-290][]
- Option to define a `markdown-link-make-text-function` function
to automatically define a default link text before prompting the user.
- Option to inhibit the prompt for a tooltip text via
`markdown-disable-tooltip-prompt`.
- Introduce `markdown-ordered-list-enumeration` variable [GH-587][]
- Search wiki link under project
- Add `markdown-insert-foldable-block` function [GH-598][]
- Add `markdown-table-align-p` flag [GH-625][]
Control table alignment after table operation
- Support highlighting syntax like Obsidian, Quilt. [GH-652][]
* Improvements:
- Correct indirect buffer's indentation in `markdown-edit-code-block` [GH-375][]
- Cleanup test code
- Strip query parameters from local file name at displaying inline images [GH-511][]
- Improve forward/backward sentences which are wrapped markup characters [GH-517][]
- Improve fontification for nested meta data [GH-476][]
- `markdown-cycle` accepts universal-argument like org-cycle [GH-530][]
- Improve mode check for derived modes [GH-532][]
- Improve for file which contains many comments [GH-536][]
- Improve for file which contains many pre blocks [GH-512][]
- Enable flyspell check at yaml metadata[GH-560][]
- Clean up Makefile
- Support to display local image with percent encoding file path
- Add ability to resize inline image display (`markdown-toggle-inline-images`) without Imagemagick installed in the computer (emulating Org Mode)
- Support including braces around the language specification in GFM code blocks
- Improve `markdown-insert-{bold,italic}` when region starts with spaces[GH-613][]
- Disable buffer-read-only if possible when markdown-mode is called [GH-622][]
- Generate the `defface` via a macro rather than a function.
- Memoize `markdown--first-displayable` to avoid performance
problems.
- Allow the use of `add-function` on
`markdown-table-at-point-p-function`.
- Comment out redundant bindings and use the more standard `RET`
name for `C-m`.
- Give `markdown-table-at-point-p-function` a non-nil default.
Simplify `markdown-table-at-point-p` accordingly.
- Auto set `sh-shell` when `markdown-edit-code-block` enter indirect buffer with `sh-mode`
- Add value check and avoid raising the exception at `markdown-edit-code-block` [GH-663][]
- Add NonGNU ELPA badge to README and website
- Support plus/negative(also Unicode minus sign) exponent in super script [GH-346][]
* Bug fixes:
- Fix issue with `nil` being returned from `markdown-imenu-create-nested-index` [GH-578][]
- Fix remaining flyspell overlay in code block or comment issue [GH-311][]
- Fix inline URL regular expression which starts/ends with spaces [GH-514][]
- Fix GFM italic fontification for one character [GH-524][]
- Fix `markdown-table-forward-cell` at last column issue [GH-522][]
- Fix GFM bold fontification with underscore issue [GH-525][]
- Fix wrong fontification words between strong markups [GH-534][]
- Fix wrong italic fontification just after code block [GH-548][]
- Fix too indended list face issue [GH-569][]
- Fix creating imenu index issue when there is no level-1 header too[GH-571][]
- Fix highlighting consecutive HTML comments[GH-584][]
- Fix `markdown-follow-thing-at-point` failing on subdir search [GH-590][]
- Fix `markdown-table-backward-cell` so it always goes back a single cell
- Fix `markdown-table-align` to detect delimiters surrounded by spaces
- Fix customization for `markdown-mouse-follow-link` and
`markdown-table-align-p`
- Fix accessing locations beyond `point-max` in
`markdown-syntax-propertize`
- Set `syntax-propertize-extend-region-functions` buffer-locally
instead of globally
- Modify only the buffer-local part of
`syntax-propertize-extend-region-functions`.
- Fix list highlighting issue in code block [GH-631][]
- Fix exception when inserting code block at end of buffer [GH-634][]
- Fix table operations when table column contains escaped vertical bars [GH-635][]
- Fix issue that executing `markdown-table-sort-lines` via menu-bar with older Emacs(< 28) [GH-641][]
- Fix wrong markdown table command issue in menu [GH-639][]
- Fix table conversion issue [GH-639][]
- Fix fill paragraph issue with setext heading [GH-638][]
- Fix line break highlighting issue at end of buffer [GH-621][]
- Fix URL highlighting which contains comma or parentheis [GH-649][]
- Fix eldoc function issue with `markdown-toggle-url-hiding` [GH-674][]
Thanks to Ta Quang Trung for a patch
- Fix `markdown-enable-math` exception issue [GH-676][]
- Fix `markdown-marginalize-headers` rendering in tty mode [GH-677][]
- Fix table and list fontification [GH-680][]
- Fix invalid code block highlighting [GH-684][]
[gh-290]: https://github.com/jrblevin/markdown-mode/issues/290
[gh-311]: https://github.com/jrblevin/markdown-mode/issues/311
[gh-346]: https://github.com/jrblevin/markdown-mode/issues/346
[gh-375]: https://github.com/jrblevin/markdown-mode/issues/375
[gh-476]: https://github.com/jrblevin/markdown-mode/issues/476
[gh-511]: https://github.com/jrblevin/markdown-mode/issues/511
[gh-512]: https://github.com/jrblevin/markdown-mode/issues/512
[gh-514]: https://github.com/jrblevin/markdown-mode/issues/514
[gh-517]: https://github.com/jrblevin/markdown-mode/issues/517
[gh-522]: https://github.com/jrblevin/markdown-mode/issues/522
[gh-524]: https://github.com/jrblevin/markdown-mode/issues/524
[gh-525]: https://github.com/jrblevin/markdown-mode/issues/525
[gh-530]: https://github.com/jrblevin/markdown-mode/issues/530
[gh-532]: https://github.com/jrblevin/markdown-mode/issues/532
[gh-534]: https://github.com/jrblevin/markdown-mode/issues/534
[gh-536]: https://github.com/jrblevin/markdown-mode/issues/536
[gh-548]: https://github.com/jrblevin/markdown-mode/issues/548
[gh-553]: https://github.com/jrblevin/markdown-mode/issues/553
[gh-560]: https://github.com/jrblevin/markdown-mode/issues/560
[gh-569]: https://github.com/jrblevin/markdown-mode/issues/569
[gh-571]: https://github.com/jrblevin/markdown-mode/issues/571
[gh-584]: https://github.com/jrblevin/markdown-mode/issues/584
[gh-587]: https://github.com/jrblevin/markdown-mode/issues/587
[gh-590]: https://github.com/jrblevin/markdown-mode/pull/590
[gh-598]: https://github.com/jrblevin/markdown-mode/pull/598
[gh-613]: https://github.com/jrblevin/markdown-mode/issues/613
[gh-621]: https://github.com/jrblevin/markdown-mode/issues/621
[gh-622]: https://github.com/jrblevin/markdown-mode/issues/622
[gh-625]: https://github.com/jrblevin/markdown-mode/issues/625
[gh-631]: https://github.com/jrblevin/markdown-mode/issues/631
[gh-634]: https://github.com/jrblevin/markdown-mode/issues/634
[gh-635]: https://github.com/jrblevin/markdown-mode/issues/635
[gh-638]: https://github.com/jrblevin/markdown-mode/issues/638
[gh-639]: https://github.com/jrblevin/markdown-mode/issues/639
[gh-640]: https://github.com/jrblevin/markdown-mode/issues/640
[gh-641]: https://github.com/jrblevin/markdown-mode/issues/641
[gh-649]: https://github.com/jrblevin/markdown-mode/issues/649
[gh-652]: https://github.com/jrblevin/markdown-mode/issues/652
[gh-663]: https://github.com/jrblevin/markdown-mode/issues/663
[gh-666]: https://github.com/jrblevin/markdown-mode/issues/666
[gh-674]: https://github.com/jrblevin/markdown-mode/pull/674
[gh-676]: https://github.com/jrblevin/markdown-mode/pull/676
[gh-677]: https://github.com/jrblevin/markdown-mode/pull/677
[gh-680]: https://github.com/jrblevin/markdown-mode/pull/680
[gh-684]: https://github.com/jrblevin/markdown-mode/issues/684
# Markdown Mode 2.4
*May 30, 2020*
* **Breaking changes:**
- GNU Emacs 25.1 or later is required. And xemacs support has been dropped
- Face variables, such as `markdown-italic-face` are now
obsolete. Use face names directly in code and customizations.
The face names themselves are unaffected, so this shouldn't
affect most users.
- Delete obsoleted aliases
- Internal variables `markdown-font-lock-keywords-basic` and
`gfm-font-lock-keywords` are now obsolete.
`markdown-font-lock-keywords` is now used instead, but users
should use `font-lock-add-keywords` instead of modifying this
variable.
- `markdown-mode` now adds entries to the beginning of
`auto-mode-alist` rather than the end. If you were relying on
the previous behavior in order to override these entries, you
should fix the problem by following best practice and ensuring
that your user configuration is loaded after the autoloads for
`markdown-mode` are evaluated. ([GH-331][], [GH-335][])
- Point at the end of fenced code blocks is no-longer considered
part of the code block ([GH-#349][]).
- Enable `markdown-fontify-code-blocks-natively` in `gfm-view-mode`. ([GH-#451][])
* New features:
- GFM task list item (checkbox) insertion with `C-c C-s [`, or
as a final fallback for `markdown-do` (`C-c C-d`). Thanks to
Akinori Musha for a patch. ([GH-229][])
- Optionally move leading atx heading markup to the left margin
when `markdown-marginalize-headers` is non-`nil`. Thanks to
Alexis Gallagher for a patch. ([GH-272][], [GH-274][])
- Added pipe table editing features. Thanks to Dmitry Safronov
for a patch. ([GH-171][], [GH-266][])
- Font lock for HTML tags and attributes, with new faces
`markdown-html-tag-name-face`,
`markdown-html-tag-delimiter-face`,
`markdown-html-attr-name-face`, and
`markdown-html-attr-value-face`. ([GH-249][])
- Font lock for HTML entities, with a new face
`markdown-html-entity-face`.
- Scale down large inline images using `markdown-max-image-size`,
a cons cell of the form `(max-width . max-height)`.
- Added read-only viewing modes `markdown-view-mode` and
`gfm-view-mode` with keymaps similar to `view-mode` and
`help-mode`. ([GH-296][])
- Optionally add footnote definitions to the end of the imenu
index using `markdown-add-footnotes-to-imenu`. ([GH-235][])
- Add custom variables `markdown-xhtml-body-preamble` and
`markdown-xhtml-body-epilogue` for wrapping additional XHTML
tags around the output. ([GH-280][], [GH-281][])
- Add `markdown-unused-refs` command to list and clean up unused
references (available via `C-c C-c u`). ([GH-322][])
- Add `markdown-insert-table` (`C-c C-s t`) for interactive
table insertion. ([GH-369][])
- Add `markdown-kill-outline` and `markdown-kill-block`
functions.
- Added `markdown-display-remote-images` for viewing remote
images. Thanks to Sean Allread for the patch. ([GH-378][])
- `markdown-back-to-heading` can be used as command ([GH-415][])
* Improvements:
- Insert references before local variables. Thanks to Philipp
Stephani for a patch. ([GH-216][], [GH-262][])
- Allow `markdown-command` and `markdown-open-command` to be
functions. ([GH-255][], [GH-263][])
- Save the buffer before running `markdown-open-command` and run
`markdown-open-command` asynchronously. Thanks to Dmitry
Safronov for a patch. ([GH-248][])
- New user option `markdown-translate-filename-function` to translate
filenames when following file links. ([GH-268][], [GH-277][])
- Support double-backslash math delimiters. ([GH-270][])
- New user option `markdown-export-kill-buffer` to kill or preserve
HTML export output buffer. ([GH-224][])
- Add custom variables `markdown-edit-code-block-default-mode`
and `markdown-fontify-code-block-default-mode` to specify default
modes for indirect editing and fontification of code blocks.
([GH-251][], [GH-303][])
- Insert-and-indirect-edit GFM code blocks simultaneously by
giving a prefix argument to `C-c C-s C`. ([GH-251][])
- Improve package load time by deferring calls to
`char-displayable-p`. ([GH-264][])
- Only raise footnotes when markup hiding is on.
Footnote display properties may now be customized via
`markdown-footnote-display`. ([GH-247][])
- Customizable subscript and superscript display properties
via `markdown-sub-superscript-display`.
- Several font-lock performance improvements.
- Support horizontal rules consisting of underscores.
- Change default character encoding to UTF-8.
([GH-340][], [GH-350][])
- Support more markdown extensions same as Vim
- Complete link text from link labels at inserting link. ([GH-421][])
- Improve regular expression for inline attributes. ([GH-406][])
- Allow relative CSS stylesheets paths. ([GH-389][])
- Improve regular expression matching for inline attributes. ([GH-389][])
- If user set `display-buffer-alist` then use `display-buffer`. ([GH-413][])
- Add custom variable for opening image. ([GH-383][])
- Improve default `markdown-command` setting
- Use markdown-command directly instead of 'sh -c' ([GH-319][])
- Use explicitly numbered group as possible for easy reading regexp
- Support list of strings of `markdown-command`
- Apply `markdown-translate-filename-function` for `markdown-display-inline-images`
([GH-422][])
- Implement own `filter-buffer-substring-function` for `markdown-view-mode` and
`gfm-view-mode` ([GH-493][])
- Improve triple backtick behavior with `electric-pair-mode`
- Update code block language list
* Bug fixes:
- No longer treat code fragments that are delimited with three
backquotes on each side as the beginning of a code block.
([GH-403][])
- Fix infloop caused by incorrect detection of end of code
blocks ([GH-349][]).
- Remove GFM checkbox overlays when switching major modes.
([GH-238][], [GH-257][])
- Don't test the value of the `composition` property to avoid
failing tests. ([GH-246][], [GH-258][])
- Fix types for `markdown-open-command`, `markdown-uri-types`,
and `markdown-hr-strings` defcustoms. ([GH-254][], [GH-259][])
- Don't insert trailing whitespace when inserting a blockquote.
([GH-227][], [GH-260][])
- Make wiki link test work even when `/tmp` contains an
inaccessible subdirectory. ([GH-261][])
- Fix `markdown-inline-code-face`'s `:inherit` attribute.
([GH-252][])
- Fix type of customizable `markdown-css-paths` variable.
([GH-276][])
- Don't set `markdown-code-face` background color at package
load time. ([GH-273][])
- Don't clobber user specified font-lock keywords when toggling
features. ([GH-222][])
- Fix font-lock for inline code inside italics and bold.
([GH-275][])
- Make code block language detection handle unspecified
or unknown code block languages. ([GH-284][])
- Fix precedence of inline code over inline links.
- Improve error reporting for `markdown` and `markdown-open`.
([GH-291][])
- Fix M-RET binding for terminals. ([GH-317][])
- Do not fail displaying inline images on empty links. ([GH-320][])
- Fix off-by-one error in `markdown-inline-code-at-pos`.
([GH-313][])
- Fix bounds during inline comment syntax propertization. ([GH-327][])
- Fix wrong metadata highlighting. ([GH-437][])
- Fix wrong italic highlighting in HTML attributes. ([GH-410][])
- Fix markdown-follow-thing-at-point issue for continuous links. ([GH-305][])
- Fix wrong setting major-mode issue at following wiki link([GH-427][])
- Fix not consider `markdown-list-indent-width` issue([GH-405][])
- Fix URL open issue which contains end parentheses ([GH-408][])
- Follow link even if it is in header([GH-430][])
- Fix clean up list number issue([GH-392][])
- Fix insert markup functions in consecutive case([GH-283][])
- Fix hide markup issue in markdown/gfm-view-mode([GH-468][])
- Fix bold regexp issue([GH-325][])
- Fix italic and punctual character issue([GH-359][])
- Fix table align issue when column contains escaped bar([GH-308][])
- Fix nested block fill-paragraph issue([GH-366][])
- Fix table transpose issue with wiki link
- Fix indent-region for pre block([GH-228][])
- Fix link highlight issue which contains escaped right bracket([GH-409][])
- Fix math inline single/double highlight issue([GH-352][])
- Fix markdown-table-forward-cell escaped vertical bar issue([GH-489][])
- Fix markdown-table-backward-cell escaped vertical bar issue
- Fix GFM italic markup issue([GH-448][])
[gh-171]: https://github.com/jrblevin/markdown-mode/issues/171
[gh-216]: https://github.com/jrblevin/markdown-mode/issues/216
[gh-222]: https://github.com/jrblevin/markdown-mode/issues/222
[gh-224]: https://github.com/jrblevin/markdown-mode/issues/224
[gh-227]: https://github.com/jrblevin/markdown-mode/issues/227
[gh-228]: https://github.com/jrblevin/markdown-mode/issues/228
[gh-229]: https://github.com/jrblevin/markdown-mode/pull/229
[gh-235]: https://github.com/jrblevin/markdown-mode/issues/235
[gh-238]: https://github.com/jrblevin/markdown-mode/issues/238
[gh-246]: https://github.com/jrblevin/markdown-mode/issues/246
[gh-247]: https://github.com/jrblevin/markdown-mode/issues/247
[gh-248]: https://github.com/jrblevin/markdown-mode/issues/248
[gh-249]: https://github.com/jrblevin/markdown-mode/issues/249
[gh-251]: https://github.com/jrblevin/markdown-mode/issues/251
[gh-252]: https://github.com/jrblevin/markdown-mode/pull/252
[gh-254]: https://github.com/jrblevin/markdown-mode/issues/254
[gh-255]: https://github.com/jrblevin/markdown-mode/issues/255
[gh-257]: https://github.com/jrblevin/markdown-mode/pull/257
[gh-258]: https://github.com/jrblevin/markdown-mode/pull/258
[gh-259]: https://github.com/jrblevin/markdown-mode/pull/259
[gh-260]: https://github.com/jrblevin/markdown-mode/pull/260
[gh-261]: https://github.com/jrblevin/markdown-mode/pull/261
[gh-262]: https://github.com/jrblevin/markdown-mode/pull/262
[gh-263]: https://github.com/jrblevin/markdown-mode/pull/263
[gh-264]: https://github.com/jrblevin/markdown-mode/pull/264
[gh-266]: https://github.com/jrblevin/markdown-mode/issues/266
[gh-268]: https://github.com/jrblevin/markdown-mode/issues/268
[gh-270]: https://github.com/jrblevin/markdown-mode/issues/270
[gh-272]: https://github.com/jrblevin/markdown-mode/issues/272
[gh-273]: https://github.com/jrblevin/markdown-mode/issues/273
[gh-274]: https://github.com/jrblevin/markdown-mode/pull/274
[gh-275]: https://github.com/jrblevin/markdown-mode/issues/275
[gh-276]: https://github.com/jrblevin/markdown-mode/issues/276
[gh-277]: https://github.com/jrblevin/markdown-mode/pull/277
[gh-280]: https://github.com/jrblevin/markdown-mode/issues/280
[gh-281]: https://github.com/jrblevin/markdown-mode/pull/281
[gh-283]: https://github.com/jrblevin/markdown-mode/issues/283
[gh-284]: https://github.com/jrblevin/markdown-mode/issues/284
[gh-291]: https://github.com/jrblevin/markdown-mode/issues/291
[gh-296]: https://github.com/jrblevin/markdown-mode/issues/296
[gh-303]: https://github.com/jrblevin/markdown-mode/pull/303
[gh-305]: https://github.com/jrblevin/markdown-mode/issues/305
[gh-308]: https://github.com/jrblevin/markdown-mode/issues/308
[gh-313]: https://github.com/jrblevin/markdown-mode/issues/313
[gh-317]: https://github.com/jrblevin/markdown-mode/pull/317
[gh-319]: https://github.com/jrblevin/markdown-mode/issues/319
[gh-320]: https://github.com/jrblevin/markdown-mode/pull/320
[gh-322]: https://github.com/jrblevin/markdown-mode/pull/322
[gh-325]: https://github.com/jrblevin/markdown-mode/issues/325
[gh-327]: https://github.com/jrblevin/markdown-mode/issues/327
[gh-331]: https://github.com/jrblevin/markdown-mode/issues/331
[gh-335]: https://github.com/jrblevin/markdown-mode/pull/335
[gh-340]: https://github.com/jrblevin/markdown-mode/issues/340
[gh-349]: https://github.com/jrblevin/markdown-mode/issues/349
[gh-350]: https://github.com/jrblevin/markdown-mode/pull/350
[gh-352]: https://github.com/jrblevin/markdown-mode/issues/352
[gh-359]: https://github.com/jrblevin/markdown-mode/issues/359
[gh-366]: https://github.com/jrblevin/markdown-mode/issues/366
[gh-369]: https://github.com/jrblevin/markdown-mode/pull/369
[gh-378]: https://github.com/jrblevin/markdown-mode/pull/378
[gh-383]: https://github.com/jrblevin/markdown-mode/issues/383
[gh-389]: https://github.com/jrblevin/markdown-mode/pull/389
[gh-392]: https://github.com/jrblevin/markdown-mode/pull/392
[gh-403]: https://github.com/jrblevin/markdown-mode/issues/403
[gh-405]: https://github.com/jrblevin/markdown-mode/issues/405
[gh-406]: https://github.com/jrblevin/markdown-mode/issues/406
[gh-408]: https://github.com/jrblevin/markdown-mode/issues/408
[gh-409]: https://github.com/jrblevin/markdown-mode/issues/409
[gh-410]: https://github.com/jrblevin/markdown-mode/issues/410
[gh-413]: https://github.com/jrblevin/markdown-mode/issues/413
[gh-415]: https://github.com/jrblevin/markdown-mode/issues/415
[gh-421]: https://github.com/jrblevin/markdown-mode/issues/421
[gh-422]: https://github.com/jrblevin/markdown-mode/issues/422
[gh-427]: https://github.com/jrblevin/markdown-mode/issues/427
[gh-428]: https://github.com/jrblevin/markdown-mode/issues/428
[gh-430]: https://github.com/jrblevin/markdown-mode/issues/430
[gh-437]: https://github.com/jrblevin/markdown-mode/issues/437
[gh-448]: https://github.com/jrblevin/markdown-mode/issues/448
[gh-451]: https://github.com/jrblevin/markdown-mode/issues/451
[gh-468]: https://github.com/jrblevin/markdown-mode/issues/468
[gh-489]: https://github.com/jrblevin/markdown-mode/issues/489
[gh-493]: https://github.com/jrblevin/markdown-mode/pull/493
# Markdown Mode 2.3
*August 31, 2017*
* **Breaking changes:**
- `markdown-mode` now requires Emacs 24.3 or later.
- Markup insertion and replacement keybindings under <kbd>C-c
C-s</kbd> (_s_ for style) have been revised to make them
easier to remember. Now, when the prefix <kbd>C-c C-s</kbd>
is pressed, a short minibuffer help prompt is presented as a
reminder of a few of the most frequently used keys. The major
changes are that bold is now inserted with <kbd>b</kbd>
(previously <kbd>s</kbd>) and italic is now <kbd>i</kbd>
(previously <kbd>e</kbd>). As a result, blockquote is now
<kbd>q</kbd> (previously <kbd>b</kbd>) and strikethrough
markup is inserted with <kbd>s</kbd> (previously
<kbd>d</kbd>). Press <kbd>C-c C-s C-h</kbd> for a complete
list of markup insertion keybindings. Heading insertion
commands are also now under <kbd>C-c C-s</kbd>.
- Link insertion and editing has been consolidated into one
command, `markdown-insert-link`, bound to <kbd>C-c C-l</kbd>.
As such, the previous separate link insertion keybindings have
been removed: <kbd>C-c C-a l</kbd>, <kbd>C-c C-a L</kbd>,
<kbd>C-c C-a r</kbd>, and <kbd>C-c C-a u</kbd>.
- Image insertion and editing has been consolidated into one
command, `markdown-insert-image`, bound to <kbd>C-c C-i</kbd>.
As such, the previous separate image insertion keybindings have
been removed: <kbd>C-c C-i i</kbd> and <kbd>C-c C-i I</kbd>.
- Footnote and wiki link insertion have been moved to the
markup insertion prefix, as <kbd>C-c C-s f</kbd> and
<kbd>C-c C-s w</kbd>.
- The list and outline editing commands have been removed from
the top-level positions (previously <kbd>M-LEFT</kbd>,
<kbd>M-RIGHT</kbd>, <kbd>M-UP</kbd>, <kbd>M-DOWN</kbd>)
and moved to major mode keybindings under <kbd>C-c</kbd> to
<kbd>C-c LEFT</kbd>, <kbd>C-c RIGHT</kbd>,
<kbd>C-c UP</kbd>, and <kbd>C-c DOWN</kbd>, respectively.
([GH-164][])
- The list and outline editing commands have also been unified
so that they all operate on entire subtrees of list items and
subtrees of atx headings, symmetrically. Previously there were
separate commands for editing heading subtrees, but promoting
a single section is easy enough by directly inserting or
removing a hash mark or using the markup replacement commands.
- Jumping between references and reference definitions via
`markdown-jump`, previously bound to <kbd>C-c C-l</kbd>, has
been moved to <kbd>C-c C-d</kbd> and rebranded as
`markdown-do`, which attempts to do something sensible with
the object at the point.
- Rename internal `markdown-link-link` to `markdown-link-url`
for clarity.
- The old inline image toggling command <kbd>C-c C-i C-t</kbd>
has been removed and replaced <kbd>C-c C-x C-i</kbd> in order
to allow for the new interactive image insertion command at
<kbd>C-c C-i</kbd>. Toggling keybindings are currently being
grouped under <kbd>C-c C-x</kbd>.
- `markdown-blockquote-face` is now applied to the entire
blockquote, including the leading `>`, so it can be used to
apply a background if desired.
- In `markdown-regex-header`, groups 4 and 6 now include
whitespace surrounding hash marks in atx headings.
- Font lock for `~~strikethrough~~` is now supported in
`markdown-mode` in addition to `gfm-mode`.
- Introduced a new face for horizontal rules: `markdown-hr-face`.
Previously, `markdown-header-delimiter-face` was used.
- Markdown Mode is now distributed under the GNU GPL version 3
or later.
- Rename `markdown-fill-forward-paragraph-function` to
`markdown-fill-forward-paragraph`.
- Rename `markdown-footnote-face` to `markdown-footnote-marker-face`.
- Functions `markdown-insert-inline-link-dwim` and
`markdown-insert-reference-link-dwim` have been combined and
replaced with `markdown-insert-link`.
- Functions `markdown-exdent-region` and `markdown-exdent-or-delete`
are now named `markdown-outdent-region` and
`markdown-outdent-or-delete`, respectively.
- The non-interactive image insertion commands have been
refactored to mirror the corresponding link insertion
commands. `markdown-insert-image` (for inline images) has
been renamed `markdown-insert-inline-image` and it now takes
three arguments (previously one optional argument).
`markdown-insert-reference-image` now takes four arguments
(previously none).
* New features:
- Markup hiding: Add a custom variable `markdown-hide-markup`,
which determines whether to hide or otherwise beautify
Markdown markup. For example, for inline links the brackets,
URL, and title will be hidden and only the (clickable) link
text will remain. The URL can be seen by hovering with the
mouse pointer and edited by deleting one of the invisible
brackets or parentheses. This can be toggled interactively
using <kbd>C-c C-x C-m</kbd> (`markdown-toggle-markup-hiding`).
This setting supersedes URL hiding (below). ([GH-130][])
- Unicode bullets are used to replace ASCII list item markers
for unordered lists when markup hiding is enabled. The list
of characters used, in order of list level, can be specified
by setting the variable `markdown-list-item-bullets`.
([GH-130][])
- When markup hiding is enabled, the characters used for
replacing certain markup can be changed by customizing the
corresponding variables:
`markdown-blockquote-display-char`,
`markdown-hr-display-char`, and
`markdown-definition-display-char`.
- URL and reference label hiding: URLs for inline links and
labels for reference links can now be hidden if desired. This is
configurable via `markdown-hide-urls`. URLs will appear as
`[link](∞)` instead of
`[link](http://perhaps.a/very/long/url/)`. To change the
placeholder character used, set `markdown-url-compose-char`.
This feature can be toggled using <kbd>C-c C-x C-l</kbd>
(`markdown-toggle-url-hiding`). If full markup hiding (above)
is enabled, then URL hiding has no additional effect.
- Native code block font-lock: Add a custom variable
`markdown-fontify-code-blocks-natively`, which determines
whether to fontify code in code blocks using the native major
mode. This only works for fenced code blocks where the
language is specified where we can automatically determine the
appropriate mode to use. The language to mode mapping may be
customized by setting the variable `markdown-code-lang-modes`.
([GH-123][], [GH-185][])
- When the [`edit-indirect`](https://github.com/Fanael/edit-indirect/)
package is installed, <kbd>C-c '</kbd> (`markdown-edit-code-block`)
can be used to edit a code block in an indirect buffer in the native
major mode. Press <kbd>C-c C-c</kbd> to commit changes and return
or <kbd>C-c C-k</kbd> to cancel.
- Add command <kbd>C-c C-x C-f</kbd> for toggling native font lock
for code blocks (`markdown-toggle-fontify-code-blocks-natively`).
- Add "page" movement, marking, and narrowing commands, where a
"page" in Markdown is defined to be a top-level subtree:
`markdown-forward-page` (<kbd>C-x ]</kbd>),
`markdown-backward-page` (<kbd>C-x [</kbd>),
`markdown-mark-page` (<kbd>C-x C-p</kbd>), and
`markdown-narrow-to-page` (<kbd>C-x n p</kbd>). ([GH-191][])
- Add subtree marking and narrowing functions:
`markdown-mark-subtree` (<kbd>C-c C-M-h</kbd>) and
`markdown-narrow-to-subtree` (<kbd>C-x n s</kbd>).
([GH-191][])
- Add syntax-aware Markdown paragraph movement commands:
<kbd>M-{</kbd> (`markdown-backward-paragraph`) and
<kbd>M-}</kbd> (`markdown-forward-paragraph`). To mark a
paragraph, use <kbd>M-h</kbd> (`markdown-mark-paragraph`).
These move at a more granular level than the block movement
commands. ([GH-191][])
- The previous block movement and marking commands are now at
<kbd>C-M-{</kbd>, <kbd>C-M-}</kbd>, and <kbd>C-c M-h</kbd>.
In terms of lists, paragraph movement commands now stop at
each list item while block commands move over entire lists.
([GH-191][])
- Add `subtree` as a possible value for
`markdown-reference-location` and
`markdown-footnote-location`.
- Ask flyspell to ignore words in URLs, code fragments,
comments, and reference labels.
- Make inline links, reference links, angle bracket URLs, and
plain URLs clickable.
- Add an additional keybinding for toggling inline image
display, <kbd>C-c C-x C-i</kbd>.
- Add a keybinding for toggling LaTeX math (_e_quation) support:
<kbd>C-c C-x C-e</kbd>.
- Support Leanpub blocks (asides, info blocks, warnings, etc.).
These are simple extensions of the usual blockquote syntax.
- Font lock, with markup hiding, for subscripts (e.g., `H~2~0`)
and superscripts (e.g., `334^10^`). Thanks to Syohei Yoshida
for a patch on which this is based. ([GH-134][])
- Add basic font-lock support for inline attribute lists or
inline identifiers used by Pandoc, Python Markdown, PHP
Markdown Extra, Leanpub, etc.
- Add basic font-lock support for Leanpub section identifiers and
page breaks.
- Add basic font-lock support for common file inclusion syntax:
`<<(file)`, `<<[title](file)`, `<<[file]`, and `<<{file}`.
- Add font lock support for Pandoc inline footnotes. ([GH-81][])
- Raise footnote markers and inline footnote text, and
optionally hide markup.
- Filling with now respects Pandoc line blocks. ([GH-144][])
- Add interactive link editing and insertion command
`markdown-insert-link`. ([GH-199][])
- Added <kbd>C-c C-d</kbd>, `markdown-do`, which is a
replacement for <kbd>C-c C-l</kbd>, `markdown-jump`. In
addition to jumping between reference/footnote labels and
definitions, it also toggles GFM checkboxes.
- Outline movement keys <kbd>C-c C-p</kbd>, <kbd>C-c C-n</kbd>,
<kbd>C-c C-f</kbd>, <kbd>C-c C-b</kbd>, and <kbd>C-c C-u</kbd>
now move between list items, when the point is in a list,
and move between headings otherwise.
- New customization option `markdown-spaces-after-code-fence` to
control the number of spaces inserted after a code fence (` ``` `).
Thanks to Philipp Stephani for a patch. ([GH-232][])
- New customization option `markdown-gfm-uppercase-checkbox` which,
when non-nil, uses `[X]` to complete task list items instead of
`[x]`. Thanks to Paul Rankin for a patch. ([GH-236][])
- Add prefix-specific prompts for styles (`C-c C-s`) and toggles
(`C-c C-x`). These may be disabled if desired by setting
`markdown-enable-prefix-prompts` to `nil`.
* Improvements:
- Document customizable variables added in version 2.2 with
`:package-version` tags.
- Better consistency of function names: predicate functions
ending in `-p` shouldn't modify match data.
- Generalize rebinding of paragraph movement commands in case users
have customized `{forward,backward,mark}-paragraph` bindings.
- Adjust point so that it is left at beginning of setext
headings in heading navigation commands.
- Prevent inline link matching in code blocks.
- When inserting a new reference definition, don't add blank
line after existing reference definitions.
- `markdown-toggle-inline-images` now displays the status in the
minibuffer.
- Increased default heading scaling range slightly, to make
level differences more pronounced when markup is hidden.
- Reuse existing windows, when possible, rather than splitting
again in preferred direction. ([GH-129][])
- Update known languages in `markdown-gfm-recognized-languages`.
- Filling with `fill-region` now leaves code blocks unmodified.
([GH-192][])
- Avoid error when live-previewing a buffer that's not visiting
a file. Thanks to Tianxiang Xiong for a patch.
([GH-200][], [GH-201][])
- Adaptive filling for Leanpub blocks.
- Set variable `comment-use-syntax`. ([GH-213][])
- Support `electric-quote-inhibit-functions` for inhibiting
electric quoting in code spans and blocks. Thanks to Philipp
Stephani for patches to both Emacs and Markdown Mode.
([GH-220][])
- Stop inhibiting line breaks inside links when filling.
([GH-173][])
* Bug fixes:
- Fix spurious bold/italic faces in inline code. ([GH-172][])
- Fix defun movement at end of buffer. ([GH-197][])
- Fix bug with adjacent bold font-locking in a list
item. ([GH-176][])
- Prevent matching italics, bold, and inline code in comments.
- Prevent matching italics and bold in URLs.
- Prevent matching links in inline code or comment spans.
- Avoid infinite loop when promoting or demoting last section in
a buffer.
- Fix font lock for subsequent inline links after a malformed
inline link. ([GH-209][])
- Prevent clobbering match data in
`markdown-font-lock-extend-region-function`. Thanks to
Philipp Stephani for a patch. ([GH-221][])
- Fix incorrect indentation of inserted GFM code blocks in lists.
Thanks to Philipp Stephani for a patch. ([GH-215][])
- Fix an issue with font lock for headings with code blocks immediately
afterwards, without whitespace. ([GH-234][])
[gh-81]: https://github.com/jrblevin/markdown-mode/issues/81
[gh-123]: https://github.com/jrblevin/markdown-mode/issues/123
[gh-130]: https://github.com/jrblevin/markdown-mode/issues/130
[gh-134]: https://github.com/jrblevin/markdown-mode/issues/134
[gh-144]: https://github.com/jrblevin/markdown-mode/issues/144
[gh-164]: https://github.com/jrblevin/markdown-mode/issues/164
[gh-172]: https://github.com/jrblevin/markdown-mode/issues/172
[gh-173]: https://github.com/jrblevin/markdown-mode/issues/173
[gh-176]: https://github.com/jrblevin/markdown-mode/issues/176
[gh-185]: https://github.com/jrblevin/markdown-mode/issues/185
[gh-191]: https://github.com/jrblevin/markdown-mode/issues/191
[gh-192]: https://github.com/jrblevin/markdown-mode/issues/192
[gh-197]: https://github.com/jrblevin/markdown-mode/issues/197
[gh-199]: https://github.com/jrblevin/markdown-mode/issues/199
[gh-200]: https://github.com/jrblevin/markdown-mode/issues/200
[gh-201]: https://github.com/jrblevin/markdown-mode/issues/201
[gh-209]: https://github.com/jrblevin/markdown-mode/issues/209
[gh-213]: https://github.com/jrblevin/markdown-mode/issues/213
[gh-215]: https://github.com/jrblevin/markdown-mode/issues/215
[gh-220]: https://github.com/jrblevin/markdown-mode/pull/220
[gh-221]: https://github.com/jrblevin/markdown-mode/pull/221
[gh-232]: https://github.com/jrblevin/markdown-mode/pull/232
[gh-234]: https://github.com/jrblevin/markdown-mode/issues/234
[gh-236]: https://github.com/jrblevin/markdown-mode/pull/236
# Markdown Mode 2.2
*May 26, 2017*
Version 2.2 is a major new stable release and all users are encouraged
to upgrade. Thanks to everyone who submitted bug reports, feature
suggestions, and especially patches.
* **Breaking changes:**
- Now use <kbd>C-c C-j</kbd> for inserting list items, like
AUCTeX and similar to other programming modes. Since <kbd>C-c
C-j</kbd> was used for `markdown-jump` (for moving between
reference link/footnote markers and their definitions), it has
been changed to <kbd>C-c C-l</kbd> (think "leap" or "loop"
instead of jump). It's also close to <kbd>C-c C-o</kbd> (used
for opening links). ([GH-26][])
- Insertion of `kbd` tags with <kbd>C-c C-s k</kbd> or
`markdown-insert-kbd`.
- Add YAML metadata parsing. Also allow multiple Pandoc
metadata, with tests. Thanks to Danny McClanahan and Syohei
Yoshida. ([GH-66][], [GH-91][], [GH-155][], [GH-156][],
[GH-157][])
- Change the behavior of <kbd>C-c C-o</kbd>
(`markdown-follow-link-at-point`) so that if a link is a
complete URL, it will open in a browser. Otherwise, open it
with `find-file` after stripping anchors and/or query strings.
([GH-132][])
- Make font lock for missing wiki links optional and disabled by
default. Add new custom variable
`markdown-wiki-link-fontify-missing` to control this behavior.
- The _function_ `markdown-enable-math` has been made obsolete
and renamed to `markdown-toggle-math`. When called without an
argument, the result is to toggle this extension rather than
enable it.
* New features:
- Filling for definition list items. ([GH-13][])
- Added option `markdown-gfm-downcase-languages` to use
lowercase language name in GFM code blocks.
([GH-71][], [GH-73][])
- Customizable live preview window split direction via
`markdown-split-window-direction`. ([GH-129][], [GH-188][])
- Variable-height headings via
`markdown-header-scaling`. ([GH-121][])
- Implement inline image previews via
`markdown-toggle-inline-images` and <kbd>C-c C-i C-t</kbd>.
Thanks to Syohei Yoshida. ([GH-122][], [GH-128][])
- Added `markdown-wiki-link-search-subdirectories` to enable
searching for wiki link files in subdirectories. ([GH-174][])
- Added option to automatically continue lists when `RET` is
pressed. `markdown-indent-on-enter` now has three settings.
([GH-179][])
- Match fenced code blocks with language and info strings.
([GH-184][])
- Add smart Markdown block navigation commands <kbd>M-{</kbd>
and <kbd>M-}</kbd>. These replace the
regular-expression-based "paragraph" movement commands
provided by Emacs, which do not recognize Markdown syntax
(e.g., headings inside of code blocks). Also use
<kbd>M-h</kbd> for marking a block and <kbd>C-x n b</kbd> to
narrow to a block.
- Add `markdown-nested-imenu-heading-index` as a customizable
option. It may be disabled to instead generate a flat imenu
index.
- Basic font lock and filling for definition lists. As a side
effect, list item navigation and movement should also work.
- Add command for toggling GFM task list items via
<kbd>C-c C-c C-x</kbd> (`markdown-toggle-gfm-checkbox`).
- Ability to toggle wiki link support via a new custom variable
`markdown-enable-wiki-links`. This may be set in a file local
variable. Also added function `markdown-toggle-wiki-links`
and a menu item.
* Improvements:
- Menubar reorganization. Grouped related actions together,
added missing commands, and added several toggle options to
the menu. ([GH-147][])
- Use `toggle` menu style for macOS compatibility.
- Remove autoload for `.text` files. Thanks to Steve Purcell.
([GH-118][])
- Set own `adaptive-fill-regexp` so that `fill-paragraph` works
for list items. Thanks to Syohei Yoshida for the patch.
([GH-79][], [GH-80][])
- Suppress minibuffer output when generated HTML is small.
Thanks to Syohei Yoshida. ([GH-83][], [GH-86][])
- Use GitHub fetcher for `markdown-mode` on MELPA. ([GH-84][])
- Improve fenced code block parsing. Thanks to Danny McClanahan.
([GH-85][], [GH-95][])
- Markdown Mode is now automatically tested against Emacs
24.1-24.5 and 25.1-25.2. ([GH-99][])
- Make live-preview mode follow min or max point. Thanks to
Danny McClanahan. ([GH-102][])
- Improved font-lock performance. ([GH-119][])
- Maintain cursor position when indenting instead of moving to
the beginning of the line. Thanks to Isaac Hodes.
([GH-125][])
- Add used language names to front of list of known languages.
([GH-135][])
- Support basic TOML metadata. Thanks to Jorge Israel Peña.
([GH-137][])
- Prohibit setext heading text from starting with hyphens,
spaces or tabs, so that there is no ambiguity between setext
headings and in-progress lists. ([GH-139][], [GH-143][])
- Ignore heading lines in `fill-paragraph`. Thanks to Syohei
Yoshida. ([GH-159][], [GH-162][])
- Improve matching of multiple math blocks with non-math text in
between. Thanks to Dave Kleinschmidt for a patch.
([GH-168][])
- Prevent `fill-paragraph` from filling lines in code blocks.
([GH-169][])
- Fix font lock for links with URLs containing parentheses.
([GH-170][])
- `fill-paragraph` now respects paragraph boundaries within
blockquotes. ([GH-186][])
- Set mark when calling `markdown-up-heading`.
- Improved font locking after empty GFM code block insertion.
- Fix spurious italics from underscores in URLs.
- Respect `font-lock-mode` being nil. Only call
`font-lock-refresh-defaults` if `font-lock-mode` is non-nil to
prevent it from being turned on when disabled by user. Thanks
to Tom May for the patch.
- Fix list item insertion on ordered lists with hash marks
(Pandoc "fancy lists").
- Treat polymode blocks as code blocks when parsing the buffer.
- Require whitespace atx heading hashmarks, as required by the
original atx specification (but not enforced by Markdown.pl).
The benefit is that it prevents false positives for #hashtags
and things like "Engine #1" when lines wrap.
- Complete heading markup when point is on an setext heading and
`markdown-insert-header-dwim` is invoked
(<kbd>C-c C-t h</kbd>).
- Better point position after inserting asymmetric atx headings.
* Bug fixes:
- Fix `scripts/get-recognized-gfm-languages.el`, which skipped
languages with spaces. ([GH-72][], [GH-82][])
- `README.md` specified Arch (AUR) package (`emacs-goodies-el`),
which did not exist. ([GH-74][])
- Don't accidentally override user entries in `auto-mode-alist`.
([GH-127][])
- Fix `markdown-cycle` issue with heading-like strings in code
blocks. Thanks to Syohei Yoshida. ([GH-75][], [GH-76][])
- Fix moving same level heading over code block issue. Thanks
to Syohei Yoshida. ([GH-77][], [GH-78][])
- Don't insert empty title strings for links. Thanks to
Sebastian Wiesner for the patch. ([GH-89][])
- Fix possible infinite loop in `markdown-cleanup-list-numbers`.
Thanks to Danny McClanahan. ([GH-98][], [GH-100][])
- Fix an args-out-of-range error due to the syntax-propertize
function returning point which is larger than `point-max`.
Thanks to Syohei Yoshida. ([GH-142][])
- Respect narrowed region in `markdown-find-previous-prop`.
Thanks to Vitalie Spinu. ([GH-109][])
- Move point at least 1 char in
`markdown-match-propertized-text` to avoid possible infinite
loop in font-lock. Thanks to Vitalie Spinu. ([GH-110][])
- Fix issues where buffers could be marked as modified when no
modifications were made. ([GH-115][], [GH-116][], [GH-146][])
- Fix an issue where comments of the form `<!-- > comment -->`
were not correctly identified. ([GH-117][])
- Prevent spurious bold fontification. Thanks to Kévin Le
Gouguec. ([GH-124][])
- Keep metadata visible when cycling visibility. ([GH-136][])
- `markdown-syntax-propertize-extend-region` should not
overwrite match-data, which caused issues with
`replace-regexp`, etc. ([GH-104][], [GH-105][])
- Don't list heading-like lines in code blocks or metadata in
imenu. Thanks to Syohei Yoshida. ([GH-145][], [GH-154][])
- Fix an issue where fill paragraph wouldn't work following
unclosed left square brackets. ([GH-148][], [GH-161][])
- Fix default language presented when inserting GFM code blocks.
Thanks to Conal Elliot for a patch. ([GH-152][])
- Backspace now always deletes characters if a region is
specified. Thanks to Syohei Yoshida.
([GH-166][], [GH-167][])
- Fix `markdown-header-face` inherit from nil error, e.g., when
exporting HTML from an Org mode file containing a Markdown
source block. Thanks to Moogen Tian for a patch.
([GH-190][], [GH-193][])
- Inserting a reference link no longer causes an "args out of
range" commit error when the existing reference label is a
single commit character.
- Fix to honor location setting when inserting reference
definitions.
- Fixed an issue where, if there is special markup at the end of
the buffer, deleting a character backward would cause the
font-lock faces to disappear.
- Fix incorrect matching of italic text due to underscores in
math mode. Thanks also to Dave Kleinschmidt.
- Fix italic highlighting issue when each line or both lines are list.
- Handle false positive italics across list items.
[gh-13]: https://github.com/jrblevin/markdown-mode/issues/13
[gh-26]: https://github.com/jrblevin/markdown-mode/issues/26
[gh-66]: https://github.com/jrblevin/markdown-mode/issues/66
[gh-71]: https://github.com/jrblevin/markdown-mode/issues/71
[gh-72]: https://github.com/jrblevin/markdown-mode/issues/72
[gh-73]: https://github.com/jrblevin/markdown-mode/issues/73
[gh-74]: https://github.com/jrblevin/markdown-mode/issues/74
[gh-75]: https://github.com/jrblevin/markdown-mode/issues/75
[gh-76]: https://github.com/jrblevin/markdown-mode/pull/76
[gh-77]: https://github.com/jrblevin/markdown-mode/pull/77
[gh-78]: https://github.com/jrblevin/markdown-mode/pull/78
[gh-79]: https://github.com/jrblevin/markdown-mode/issues/79
[gh-80]: https://github.com/jrblevin/markdown-mode/pull/80
[gh-82]: https://github.com/jrblevin/markdown-mode/pull/82
[gh-83]: https://github.com/jrblevin/markdown-mode/issues/83
[gh-84]: https://github.com/jrblevin/markdown-mode/issues/84
[gh-86]: https://github.com/jrblevin/markdown-mode/pull/86
[gh-85]: https://github.com/jrblevin/markdown-mode/issues/85
[gh-89]: https://github.com/jrblevin/markdown-mode/pull/89
[gh-91]: https://github.com/jrblevin/markdown-mode/pull/91
[gh-95]: https://github.com/jrblevin/markdown-mode/pull/95
[gh-98]: https://github.com/jrblevin/markdown-mode/issues/98
[gh-99]: https://github.com/jrblevin/markdown-mode/pull/99
[gh-100]: https://github.com/jrblevin/markdown-mode/pull/100
[gh-102]: https://github.com/jrblevin/markdown-mode/pull/102
[gh-104]: https://github.com/jrblevin/markdown-mode/issues/104
[gh-105]: https://github.com/jrblevin/markdown-mode/pull/105
[gh-109]: https://github.com/jrblevin/markdown-mode/pull/109
[gh-110]: https://github.com/jrblevin/markdown-mode/pull/110
[gh-115]: https://github.com/jrblevin/markdown-mode/issues/115
[gh-116]: https://github.com/jrblevin/markdown-mode/pull/116
[gh-117]: https://github.com/jrblevin/markdown-mode/issues/117
[gh-118]: https://github.com/jrblevin/markdown-mode/pull/118
[gh-119]: https://github.com/jrblevin/markdown-mode/issues/119
[gh-121]: https://github.com/jrblevin/markdown-mode/issues/121
[gh-122]: https://github.com/jrblevin/markdown-mode/issues/122
[gh-124]: https://github.com/jrblevin/markdown-mode/issues/124
[gh-125]: https://github.com/jrblevin/markdown-mode/pull/125
[gh-127]: https://github.com/jrblevin/markdown-mode/issues/127
[gh-128]: https://github.com/jrblevin/markdown-mode/pull/128
[gh-129]: https://github.com/jrblevin/markdown-mode/issues/129
[gh-132]: https://github.com/jrblevin/markdown-mode/pull/132
[gh-135]: https://github.com/jrblevin/markdown-mode/issues/135
[gh-136]: https://github.com/jrblevin/markdown-mode/issues/136
[gh-137]: https://github.com/jrblevin/markdown-mode/issues/137
[gh-139]: https://github.com/jrblevin/markdown-mode/issues/139
[gh-142]: https://github.com/jrblevin/markdown-mode/pull/142
[gh-143]: https://github.com/jrblevin/markdown-mode/issues/143
[gh-145]: https://github.com/jrblevin/markdown-mode/issues/145
[gh-154]: https://github.com/jrblevin/markdown-mode/pull/154
[gh-146]: https://github.com/jrblevin/markdown-mode/pull/146
[gh-147]: https://github.com/jrblevin/markdown-mode/issues/147
[gh-148]: https://github.com/jrblevin/markdown-mode/issues/148
[gh-152]: https://github.com/jrblevin/markdown-mode/issues/152
[gh-155]: https://github.com/jrblevin/markdown-mode/issues/155
[gh-156]: https://github.com/jrblevin/markdown-mode/issues/156
[gh-157]: https://github.com/jrblevin/markdown-mode/pull/157
[gh-159]: https://github.com/jrblevin/markdown-mode/issues/159
[gh-161]: https://github.com/jrblevin/markdown-mode/issues/161
[gh-162]: https://github.com/jrblevin/markdown-mode/pull/162
[gh-166]: https://github.com/jrblevin/markdown-mode/issues/166
[gh-167]: https://github.com/jrblevin/markdown-mode/pull/167
[gh-168]: https://github.com/jrblevin/markdown-mode/pull/168
[gh-169]: https://github.com/jrblevin/markdown-mode/issues/169
[gh-170]: https://github.com/jrblevin/markdown-mode/issues/170
[gh-174]: https://github.com/jrblevin/markdown-mode/issues/174
[gh-179]: https://github.com/jrblevin/markdown-mode/issues/179
[gh-184]: https://github.com/jrblevin/markdown-mode/issues/184
[gh-186]: https://github.com/jrblevin/markdown-mode/issues/186
[gh-188]: https://github.com/jrblevin/markdown-mode/pull/188
[gh-190]: https://github.com/jrblevin/markdown-mode/pull/190
[gh-193]: https://github.com/jrblevin/markdown-mode/issues/193
# Markdown Mode 2.1
*January 9, 2016*
Version 2.1 is a major new stable release and all users are encouraged
to upgrade. The many new features and bug fixes included are
described below.
Markdown Mode is developed and tested primarily for compatibility with
GNU Emacs versions 24.3 and later. It requires `cl-lib` version 0.5
or later. This library has been bundled with GNU Emacs since version
24.3. Users of GNU Emacs 24.1 and 24.2 can install `cl-lib` using
`M-x package-install RET cl-lib`.
This release of Markdown Mode contains patches written by many
individuals including Masayuki Ataka, Jonas Bernoulli, Roger Bolsius,
Daniel Brotsky, Julien Danjou, Samuel Freilich, David Glasser, Marijn
Haverbeke, Antonis Kanouras, Keshav Kini, Vasily Korytov, Danny
McClanahan, Matt McClure, Howard Melman, Makoto Motohashi, Jon
Mountjoy, Pierre Neidhardt, Spanti Nicola, Paul W. Rankin, Christophe
Rhodes, Tim Visher, and Syohei Yoshida. Many others also submitted
bug reports. Thanks to everyone for your contributions.
* **Breaking changes:**
- In GFM Mode, `visual-line-mode` is no longer enabled by
default. A `gfm-mode-hook` was added, which could be used to
keep `visual-line-mode` on by default in `gfm-mode`.
([GH-31][])
* New features:
- Add automatically updating live preview functionality
(<kbd>C-c C-c l</kbd>) via the native `eww` browser.
([GH-36][], [GH-53][], [GH-57][], [GH-58][], [GH-63][])
- Use `autoload` to enable `markdown-mode` in `auto-mode-alist`
for files with `.text`, `.markdown`, and `.md` extensions.
- Use Travis CI for automated build testing.
- ATX heading subtree promotion and demotion via
<kbd>M-S-LEFT</kbd>, and <kbd>M-S-RIGHT</kbd>.
- ATX heading subtree moving up and down via <kbd>M-S-UP</kbd>
and <kbd>M-S-DOWN</kbd>.
- Convert inline links to reference links when
`markdown-insert-reference-link-dwim` is used when the point
is at an inline link.
- Allow linking to multiple stylesheets in `markdown-css-paths`
list. Use stylesheets for both preview and export. Previous
`markdown-css-path` (singular) is now deprecated.
- Customizable default unordered list marker via
`markdown-unordered-list-item-prefix`.
- Add asymmetric ATX heading adornment option
`markdown-asymmetric-header`.
- Font lock for `<kbd>` tags.
- Support GFM-style code blocks in `markdown-mode` (as well as
`gfm-mode`). ([GH-2][])
- New function `markdown-electric-backquote` will prompt for a
language name for GFM code blocks. This can be disabled by
customizing the variable
`markdown-gfm-use-electric-backquote`. ([GH-9][])
- Completion of programming language names for GFM code blocks.
A list of pre-defined languages is included, but this can be
augmented by setting `markdown-gfm-additional-languages`.
([GH-38][], [GH-54][], [GH-59][], [GH-60][], [GH-64][])
- Strikethrough support in `gfm-mode`.
- Support for GFM toggling checkboxes `mouse-1` or
<kbd>RET</kbd>. This is controlled by a new custom variable,
`markdown-make-gfm-checkboxes-buttons`. Thanks to Howard
Melman for a patch. ([GH-7][])
- Font lock and filling for Pandoc "fancy lists," which use `#`
as the list marker. ([GH-3][])
- Basic support for filling of definition lists. ([GH-20][])
- Support [Ikiwiki](http://ikiwiki.info/)-style search for wiki links that allows
links relative to parent directories. Enable this by setting
`markdown-wiki-link-search-parent-directories`.
([GH-8][], [GH-21][])
* Improvements:
- General font lock improvements for comments, code blocks,
blockquotes, headings, horizontal rules, bold, and italics.
([GH-67][], [GH-68][])
- Separate highlighting for Markdown markup characters
(asterisks, underscores, backquotes, etc.) to aid in
readability.
- Font lock for bold, italics, and LaTeX math work inside block
elements such as headings and blockquotes. ([GH-39][])
- Display a link to the GitHub repository in the MELPA
description. ([GH-37][])
* Bug fixes:
- Fix bug in `markdown-complete-region/buffer` where level-two
Setext headings could be confused with horizontal rules.
Includes a unit test. Thanks to Gunnar Franke for the report.
- Fix filling when a decimal number appears at column zero,
which could be confused with an ordered list item.
- Fix buffer-wide markup completion.
- Fix font-lock for GFM code blocks without language keywords.
- Improved Setext header insertion to support wide characters.
- Fix expensive `paragraph-separate` regular expression.
- Make `comment-auto-fill-only-comments` a buffer-local
variable, which allows for better default filling behavior in
cases where the global variable is non-`nil`.
- Fix Emacs 23 compatibility by checking for
`font-lock-refresh-defaults` before calling it.
- Handle reference definitions when filling paragraphs.
- Improve filling of list items with indentation.
- Properly handle footnotes when filling.
- Fix issues with markdown-footnote-kill and related functions.
- Improve font lock for fenced code blocks.
- Avoid avoid overwriting source file when exporting if source
file has `.html` extension.
- Fix and improve ordered list behavior to preserve digit
spacing and avoid an infinite loop in certain cases. Adjust
ordered list whitespace when marker digit count increases.
- Improve reference definition regular expression to avoid
matching multiple reference links in one line.
- Allow spaces in fenced code language identifiers. ([GH-22][])
- Improve font lock for preformatted blocks and fenced code
blocks.
- Fix out-of-order HTML output. ([GH-14][])
- Add console-friendly backspace and tab bindings. ([GH-15][])
- Better treatment of files without extensions for wiki links.
When files have no extensions, don't append a lone period.
([GH-23][])
- Call `looking-back` with two arguments for compatibility with
Emacs 25.1.
- Make `(beginning-of-defun -1)` go to next title when point is
at beginning of defun. ([GH-34][])
- Ignore headings in code blocks for font lock, movement, and
visibility cycling.
([GH-27][], [GH-33][], [GH-35][], [GH-40][], [GH-41][])
- Don't highlight wiki links in code blocks. ([GH-17][])
- Don't move to links in code blocks with <kbd>C-c C-p</kbd> and
<kbd>C-c C-n</kbd>.
- Fix hanging indentation for list items and single-line
preformatted blocks. ([GH-16][], [GH-28][], [GH-30][])
- Better rejection of false positives for italics with respect
to other inline elements (inline code and bold).
- Predicate functions should not modify match data.
- Use correct list marker from previous list level when using
<kbd>C-u M-RET</kbd> to insert a dedented list item. Prevent
an infinite loop in some cases. ([GH-4][])
- Reduce lag when scrolling or inserting text into large files.
([GH-30][], [GH-101][])
- Avoid confusing tramp errors with malformed wiki links.
([GH-65][])
[gh-2]: https://github.com/jrblevin/markdown-mode/pull/2
[gh-3]: https://github.com/jrblevin/markdown-mode/pull/3
[gh-4]: https://github.com/jrblevin/markdown-mode/issues/4
[gh-7]: https://github.com/jrblevin/markdown-mode/issues/7
[gh-8]: https://github.com/jrblevin/markdown-mode/issues/8
[gh-9]: https://github.com/jrblevin/markdown-mode/issues/9
[gh-14]: https://github.com/jrblevin/markdown-mode/issues/14
[gh-15]: https://github.com/jrblevin/markdown-mode/issues/15
[gh-16]: https://github.com/jrblevin/markdown-mode/issues/16
[gh-17]: https://github.com/jrblevin/markdown-mode/issues/17
[gh-18]: https://github.com/jrblevin/markdown-mode/issues/18
[gh-20]: https://github.com/jrblevin/markdown-mode/issues/20
[gh-21]: https://github.com/jrblevin/markdown-mode/issues/21
[gh-22]: https://github.com/jrblevin/markdown-mode/issues/22
[gh-23]: https://github.com/jrblevin/markdown-mode/issues/23
[gh-27]: https://github.com/jrblevin/markdown-mode/issues/27
[gh-28]: https://github.com/jrblevin/markdown-mode/issues/28
[gh-30]: https://github.com/jrblevin/markdown-mode/issues/30
[gh-31]: https://github.com/jrblevin/markdown-mode/issues/31
[gh-32]: https://github.com/jrblevin/markdown-mode/pull/32
[gh-33]: https://github.com/jrblevin/markdown-mode/issues/33
[gh-34]: https://github.com/jrblevin/markdown-mode/pull/34
[gh-35]: https://github.com/jrblevin/markdown-mode/pull/35
[gh-36]: https://github.com/jrblevin/markdown-mode/pull/36
[gh-37]: https://github.com/jrblevin/markdown-mode/issues/37
[gh-38]: https://github.com/jrblevin/markdown-mode/issues/38
[gh-39]: https://github.com/jrblevin/markdown-mode/issues/39
[gh-40]: https://github.com/jrblevin/markdown-mode/pull/40
[gh-41]: https://github.com/jrblevin/markdown-mode/pull/41
[gh-53]: https://github.com/jrblevin/markdown-mode/pull/53
[gh-54]: https://github.com/jrblevin/markdown-mode/pull/54
[gh-57]: https://github.com/jrblevin/markdown-mode/pull/57
[gh-58]: https://github.com/jrblevin/markdown-mode/pull/58
[gh-59]: https://github.com/jrblevin/markdown-mode/pull/59
[gh-60]: https://github.com/jrblevin/markdown-mode/pull/60
[gh-63]: https://github.com/jrblevin/markdown-mode/pull/63
[gh-64]: https://github.com/jrblevin/markdown-mode/pull/64
[gh-65]: https://github.com/jrblevin/markdown-mode/pull/65
[gh-67]: https://github.com/jrblevin/markdown-mode/pull/67
[gh-68]: https://github.com/jrblevin/markdown-mode/pull/68
[gh-101]: https://github.com/jrblevin/markdown-mode/issues/101
# Markdown Mode 2.0
*March 24, 2013*
Version 2.0 is a major new stable release with many new features,
including some changes to keybindings for element insertion and
outline navigation. In summary, Markdown Mode now has improved
keybindings, smarter markup insertion commands, a general markup
removal command, markup completion (normalization), markup promotion
and demotion, list and region editing, many syntax highlighting
improvements, new and improved movement commands, and generalized link
following and movement.
* **Breaking changes:**
- Physical style element insertion commands prefixed by
<kbd>C-c C-p</kbd> have been removed in favor of their
logical style counterparts prefixed by <kbd>C-c C-s</kbd>.
- Shift is now the preferred way to distinguish keybindings for
two related elements. For example, you can insert an inline
link with <kbd>C-c C-a l</kbd> or a reference link with
<kbd>C-c C-a L</kbd>. The latter keybinding is new and
preferred over <kbd>C-c C-a r</kbd>, which is deprecated.
- Footnote keybindings have been moved away from the
<kbd>C-c C-f n</kbd> prefix.
- Several other new keybindings have been introduced and are
described in more detail below.
- Removed wiki link following with `RET` and
`markdown-follow-wiki-link-on-enter` setting. Use the
unified following (open link) command <kbd>C-c C-o</kbd>
instead.
* New features:
- Fast heading insertion with a single command which
automatically calculates the type (atx or setext) and level.
Prefix with <kbd>C-u</kbd> to promote the heading by one
level or <kbd>C-u C-u</kbd> to demote the heading by one
level. Headings with a specific level or type can still be
inserted quickly with specific keybindings.
- Easily kill an element (e.g., a link or reference definition)
at the point with <kbd>C-c C-k</kbd> and store the most
important part in the kill ring (e.g., the link text or URL).
- Markup completion (<kbd>C-c C-]</kbd>) normalizes the markup
for an element (e.g., it balances hash marks and removing
extra whitespace for atx headings).
- Markup promotion and demotion via <kbd>C-c C--</kbd> and
<kbd>C-c C-=</kbd>, respectively. The sequences
<kbd>M-UP</kbd> and <kbd>M-DOWN</kbd> may
also be used.
- List editing: move list items up and down with
<kbd>M-UP</kbd> and <kbd>M-DOWN</kbd>.
Indent and exdent list items with <kbd>M-LEFT</kbd>
and <kbd>M-RIGHT</kbd>.
- Region editing: indent and exdent regions, with tab stops
determined by context, using <kbd>C-c <</kbd> and
<kbd>C-c ></kbd> (as in `python-mode`).
- Smart list item insertion with <kbd>M-RET</kbd>, with
indentation and marker determined by the surrounding context.
Prefix with <kbd>C-u</kbd> to decrease the indentation by one
level or <kbd>C-u C-u</kbd> to increase the indentation one
level.
- Quickly jump between reference definitions and
reference-style links and between footnote markers and
footnote text with <kbd>C-c C-j</kbd>. Create undefined
references when jumping from a reference link. When jumping
back, present a buffer with buttons for selecting which link
to jump to.
- Revised outline navigation commands, following `org-mode`.
This frees up the sexp navigation keys <kbd>C-M-f</kbd> and
<kbd>C-M-b</kbd> which can be useful in Markdown documents
which have many matching delimiters, as well as the defun
navigation keys <kbd>C-M-a</kbd> and <kbd>C-M-e</kbd>.
- Previous/next section movement with <kbd>C-M-a</kbd> and
<kbd>C-M-e</kbd> (in Emacs parlance, this is movement by
defun). Mark the current section with <kbd>C-M-h</kbd>.
- Previous/next paragraph movement via <kbd>M-{</kbd> and
<kbd>M-}</kbd>.
- Previous/next block movement with <kbd>C-u M-{</kbd> and
<kbd>C-u M-}</kbd>.
- Customizable reference link location via
`markdown-reference-location`.
- Font lock for title strings in inline links.
- Subtle syntax highlighting for hard line breaks.
- In GFM Mode, change italic font lock behavior to match GFM
specification regarding underscores in words.
- Insertion command (<kbd>C-c C-s P</kbd>) for GFM quoted code
blocks.
- Syntax highlighting for MultiMarkdown metadata and Pandoc
title blocks.
- Added before and after export hooks
`markdown-before-export-hook` and
`markdown-after-export-hook`.
- Added a library of regression tests which currently contains
160 unit tests.
* Improvements:
- ATX heading insertion will use current line as heading text
if not blank and there is no active region.
- Setext heading insertion will prompt for heading title when
there is no active region.
- When the point is at a heading, the heading insertion
commands will replace the heading at point with a heading of
the requested level and type.
- When there is no active region, the bold, italic, code, link,
and image insertion commands will operate on the word at
point, if any, so that you don't have to have an active
selection for simple modifications.
- Repeating the bold, italic, or code insertion commands when
the point is at an element of the corresponding type will
remove the markup.
- Indentation of preformatted text and blockquotes will be
adjusted automatically in contexts where more indentation is
required, as in nested lists. (For example, in Markdown, a
preformatted text block inside a first-level list item must
have eight spaces of indentation.)
- Improved reference link insertion with label completion:
+ Use word at point as link text, if possible, when there
is no active region.
+ Tab completion of reference labels from the set of
currently defined references.
+ Reference link insertion no longer prompts for a URL or
title if the label is already defined.
+ If no URL is given, create an empty reference definition
and move the point there.
- Basic reference-style image markup insertion.
- Multiple horizontal rule styles, `markdown-hr-strings`,
customizable as a list of strings, which can be cycled
through.
- New URL insertion command for inserting plain URLs delimited
by angle brackets (<kbd>C-c C-a u</kbd>). Works on URL at
point, if any, when there is no active region.
- Generally improved insertion commands with respect to
insertion of surrounding whitespace and point position after
insertion (e.g., ensuring blank lines before and after newly
inserted headings and horizontal rules).
- Unified link following: open links in a browser and wiki
links in a new buffer with the same keybinding (<kbd>C-c
C-o</kbd>). This supersedes the separate wiki link following
command (<kbd>C-c C-w</kbd>).
- Generalized link movement and following: move between and
open all link types (inline, reference, wiki, angle URIs)
using the same key bindings (<kbd>M-n</kbd> and
<kbd>M-p</kbd>). Previously, these commands only moved
between wiki links, but with the above following enhancement,
moving between hyperlinks of all types is more useful.
- Syntax highlighting for GFM quoted code blocks with an
optional language keyword.
- Dynamic loading and unloading for math support with
refontification.
- Allow underscores and colons in equation labels in math mode.
- Syntax highlighting improvements: faster identification of
preformatted blocks. Markdown Mode adheres to the four space
rule for nested list items: in a list item of level _n_,
preformatted text must be indented at least 4(_n_ + 1)
spaces.
- More inclusive blockquote regular expression highlights
blockquotes with leading indentation, when appropriate.
- Regular expression optimization for URI matching.
- Numerous other improvements for more accurate syntax
highlighting.
- Respect hard line breaks when filling paragraphs.
- Add indentation positions: preceding list markers and pre
block position.
- Use button-map for navigating undefined references, so that
references can be navigated via the keyboard by pressing
<kbd>TAB</kbd> and <kbd>S-TAB</kbd>.
- Use newer `use-region-p` when possible to check for active
region, with fallbacks for older Emacsen and Xemacs.
- Clean up whitespace after deleting footnote text.
- Use adaptive filling for list items and blockquotes.
- Treat all list items (any marker type) the same way with respect
to filling.
- Retain the `>` prefix when filling blockquotes.
- Fill list items inside of blockquotes.
- Numerous other internal improvements to make the code base
more robust.
* Bug fixes:
- Fix bug in heading visibility cycling introduced in version
1.9 where the level of headings was being calculated
incorrectly.
- Fix problems inserting ATX headings at end of buffer.
- Support small Setext headings (with fewer than three
characters).
- Several improvements to inline code syntax highlighting.
- Fix some edge cases regarding escaping, spaces, etc. for bold
and italic font lock.
- Prohibit newlines and tabs immediately after opening bold and
italic delimiters. This fixes a bug where italics would not
be highlighted following a horizontal rule
- Improved multi-line font lock performance for large files.
- Improved multi-line font lock at beginning of buffer.
- List items with any of the three markers are filled in the
same way (previously list items starting with `+` were not
filled with hanging indentation).
- Fix end detection for empty list items. Don't skip over the
whitespace following the marker on the same line.
Previously, empty list items were not being detected properly
by `markdown-cur-list-item-bounds` as a result of this.
- Don't exclude `[^]`, which is a valid reference tag (but
let's please stick to alphanumeric characters).
- No longer highlight escaped wiki links.
- Fix line number buttons for reference checking and make all
buttons clickable.
- Fix killing of footnotes with no text.
- Fix escaping in `markdown-xhtml-standalone-regexp`.
- Fix a font-lock edge case involving footnote markers
preceding inline links.
- More accurate font-lock for ATX headings in edge cases.
- Fix killing of footnotes from footnote text.
--- ---
# Markdown Mode 1.9
*January 1, 2013*
Version 1.9 is a major new stable release with important bug fixes.
* New features:
- Support for setext-style headers in `outline-mode`. Thanks
to Shigeru Fukaya.
- Font lock for tilde-fenced code blocks.
- Reference link insertion (<kbd>C-c C-a r</kbd>).
- Support two forms of aliased wiki links:
`[[link text|PageName]]` and `[[PageName|link text]]`
(`markdown-wiki-link-alias-first`).
- Footnote support: font lock and insertion, deletion, and
navigation functions for footnotes (prefixed by
<kbd>C-c C-f</kbd>; following for wiki links is now
<kbd>C-c C-w</kbd>). Thanks to Joost Kremers.
- Improved preview and export commands. Thanks to Donald
Ephraim Curtis.
- `imenu` support. Thanks to Akinori Musha.
- Added autoload token for `gfm-mode`. Thanks to Max Penet and
Peter Eisentraut for the suggestion.
- Optional character set declaration in XHTML output. Thanks
to François Gannaz for the suggestion.
- Smart unindentation when pressing delete at the beginning of
a line. Thanks to Zhenlei Jia.
- Optional prefix argument to <kbd>C-c C-w</kbd> for opening
wiki links in another window.
- Open inline and reference links and inline URIs in browser
(<kbd>C-c C-o</kbd>). Thanks to Peter Jones.
- Open files in a standalone previewer or editor
(<kbd>C-c C-c o</kbd>).
- Clean up numbered/ordered lists (<kbd>C-c C-c n</kbd>).
Thanks to Donald Ephraim Curtis.
- Save Markdown output to kill ring (copy to clipboard)
(<kbd>C-c C-c w</kbd>). Thanks to Donald Ephraim Curtis.
* Improvements:
- Improve `markdown-mode-hook` docstring. Thanks to Shigeru
Fukaya for the more precise description.
- Don't require Common Lisp extensions at run time. Thanks to
Shigeru Fukaya.
- Prefer `visual-line-mode`, the replacement for
`longlines-mode`, when in `gfm-mode`. Thanks to Christopher
J. Madsen.
- Proper GitHub wiki link handling in `gfm-mode`. Thanks to
Kevin Porter.
- XEmacs compatibility:
- Avoid malformed list errors during font definitions.
- Handle replace-regexp-in-string.
- Use text properties instead of overlays.
- Fall back to `set-buffer-modified-p` when
`restore-buffer-modified-p` is unavailable.
- Many additional fixes. Thanks to Michael Sperber.
- Handle wiki links in buffers not associated with a file.
- Update autoload documentation to support byte compilation.
- Option to use `-` instead of `_` for wiki links in
`gfm-mode`.
- Add two tab stops to possible indentation positions following
list items.
* Bug fixes:
- Fixed a bug which caused unusual behavior in functions
performing search, replace, and/or matching operations.
Thanks to Christopher J. Madsen for the patch.
- Fixed a bug which caused an incompatibility with
`orgtbl-mode`. Thanks to Vegard Vesterheim for the report
and to Carsten Dominik for a patch.
- Fixed a bug where reference links at the beginning of a line
would be mistaken for reference definitions.
- Improved font lock for headers.
- Improved font lock for reference definitions. Thanks to Ian
Yang.
- Avoid byte compiler warning about `region-exists-p` in GNU
Emacs.
- Additional key bindings for cross-platform header cycling
compatibility.
- Fix problem with externally modified files on disk where the
user would get stuck in a loop answering "really edit the
buffer?" Thanks to Bryan Fink for a detailed report.
- Font lock fix for URLs with underscores.
- Escape shell commands to handle filenames with spaces, etc.
Thanks to Marcin Kasperski for a patch.
- Use `:slant` instead of unsupported `:italic` in font spec.
- Fix typo in `paragraph-fill` regexp.
# Markdown Mode 1.8.1
*August 15, 2011*
Version 1.8.1 is a bugfix version which addresses some minor issues in
version 1.8.
* New features:
- Wiki link features now support aliased or piped wiki links of
the form `[[PageName|link text]]`.
* Bug fixes:
- Fixed an issue, reported by Werner Dittmann, where the
default indentation position would be skipped over when
`auto-fill-mode` was on. This meant that when writing a
normal paragraph, for example, the line would wrap to column
4 instead of column 1.
- Require the `cl` package for `multiple-value-bind`. Thanks
to Werner Dittman for noticing this.
- Remove a leftover debug print message which would announce
"ENTER" in the minibuffer when the enter key was pressed.
# Markdown Mode 1.8
*August 12, 2011*
* New features:
- Add support for following wiki links in a buffer, either with
<kbd>C-c C-f</kbd> or, optionally, <kbd>RET</kbd>, when the
point is at a wiki link.
- Support Markdown processors which do not accept input from
stdin (i.e, Python-Markdown) by adding the
`markdown-command-needs-filename` custom option. Thanks to
Jeremiah Dodds for a patch.
- GitHub-Flavored Markdown mode (`gfm-mode`) turns on
`longlines-mode` and `auto-fill-mode`. Thanks to Edward
O'Connor for the patch.
- Add outline-mode-like keybindings for fast outline navigation
of atx-style headers (see the updated documentation for
details).
- Arbitrary content may to be added to the `<head>` block during
HTML output to allow for flexible local customizations. See
`markdown-xhtml-header-content`.
- New HTML export options: export to a file with
<kbd>C-c C-c e</kbd> or export to a file and view with
<kbd>C-c C-c v</kbd>.
- Support Markdown processors which produce standalone output
(i.e., complete HTML documents). If this is detected, by
matching `markdown-xhtml-standalone-regexp` in the first five
lines of output, then omit the `markdown-mode` header and
footer. Thanks to Philippe Ivaldi for this and the previous
HTML-output-related patches.
- Customizable wiki link following behavior using
`markdown-follow-wiki-link-on-enter`.
- Quick navigation to the previous and next wiki links using
<kbd>M-p</kbd> and <kbd>M-n</kbd>.
- Wiki links to non-existent files (missing links) are
highlighted differently. Based on functionality from
`wiki-mode` by Alex Schroeder. Thanks to Eric Merritt for
patches.
* Improvements:
- Improve syntax highlighting of preformatted text blocks to
better distinguish them from list items with hanging
indentation and nested list items.
- Match italic and bold text and inline code fragments across
line breaks, within a single block, but prevent them from
matching across blocks.
- Generally improve multi-line font lock by extending the search
region to include full blocks.
- Make indentation work when the previous line is not indented.
- Set tab width to 4, the natural tab width for Markdown
documents.
- Stop announcing "TAB" in the minibuffer when tab is pressed.
- Use `html-mode` for viewing Markdown output.
- Ensure Markdown output buffer is always raised, even when the
output is short.
- Make sure horizontal rules inserted by <kbd>C-c -</kbd>
(`markdown-insert-hr`) are surrounded by blank lines.
- Added an `autoload` cookie. Thanks to Peter S. Galbraith for
the patch.
- Support a customizable horizontal rule string
`markdown-hr-string`. This replaces the previous but less
flexible custom option `markdown-hr-length`, which has been
removed.
- Followed wiki links are opened using `markdown-mode`.
* Bug fixes:
- Fixed an issue, reported by Joost Kremners, where for
multi-line lists, the position of the list marker was not
being added to the list of possible indentation levels.
- Avoid a problem where indentation positions were getting
skipped over when tab cycling.
- Fixed an issue when column 0 is the natural automatic
indentation stop.
- Prevent infinite loops in blockquote (<kbd>C-c C-s b</kbd>)
and preformatted (<kbd>C-c C-s p</kbd>) block insertion while
at the beginning or end of the buffer.
# Markdown Mode 1.7
*October 1, 2009*
* New features:
- Support filling of list items.
- Allow customization of font-lock faces (thanks to intrigeri
for the patch).
- Automatic indentation when pressing enter or tab (with
cycling upon subsequent tab presses) (thanks to Bryan Kyle).
- Generate real XHTML for previewing (thanks to Hilko Bengen
for the patch). This fixes [Debian bug #490865](http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=490865). The CSS
stylesheet for XHTML output is customizable via
`markdown-css-path` (thanks to Ankit Solanki for the patch).
- Better URL matching (protocols are customizable through
`markdown-uri-types`).
- LaTeX syntax highlighting can be enabled or disabled using
the customize system (`markdown-enable-math`).
- Support for HTML comments (font lock, `comment-dwim`, etc.).
- Support filling of definition lists (thanks to Peter Williams
for the patch).
* Improvements:
- Add support level 5 and 6 atx-style headers (thanks to Alec
Resnick for the report).
- Fill-paragraph no longer breaks lines inside of square
brackets (thanks to Peter Williams for the patch).
* Bug fixes:
- Fixed several font lock issues.
- Fixed a bug where pressing enter did nothing in
longlines-mode (thanks to Ankit Solanki for the patch).
- Fixed a problem where Emacs snapshot would hang during
`markdown-enter` and `markdown-cycle` (thanks to Alec Resnick
for the report).
- Fixed an issue with auto-fill-mode and markdown-mode's
indentation (thanks to Joost Kremers for the report and
analysis).
# Markdown Mode 1.6
*June 4, 2008*
* **Breaking changes:**
- Rename `blockquote-region` to `markdown-blockquote-region` in
accordance with the Emacs major mode coding conventions.
- Several new keybindings.
- Reverted to using colors instead of bold, italic, and
fixed-width faces.
* New features:
- Implemented org-mode style visibility cycling.
- Support outline minor mode.
- Undefined reference checking (via `C-c C-c c`, using code by
Dmitry Dzhus).
- Wiki links: syntax highlighting and element insertion
(`C-c C-a w`).
- Allow syntax highlighting faces to be customized.
- Insertion of preformatted text sections (`C-c C-s p`).
- Font locking for inline URIs and email addresses.
- Markdown mode menu (thanks to Greg Bognar for the initial
code).
* Improvements:
- Markdown customize group moved to `wp` (word processing).
- Derive from `text-mode` instead of `fundamental-mode`.
- Properly prefix regex definitions and `wrap-or-insert`
function.
* Bug fixes:
- Highlight wrapped inline link definitions (thanks to Blake
Winton).
- Fix adjacent wiki link font lock bug.
- Support escaping of backticks.
- Many other small font lock tweaks.
- Don't check for `transient-mark-mode` in
`markdown-blockquote-region`. This fixes Debian bug #456592
(thanks to Daniel Burrows for the report).
- Apply Greg Bognar's fix for `markdown` with an active region.
- Don't use the kill ring to store wrapped text.
# Markdown Mode 1.5
*October 11, 2007*
Version 1.5 is a major revision compared to previous releases. The
functionality has not changed very much, all of the keybindings are
the same, but it is internally quite different.
Most of the changes involve syntax highlighting. The regular
expressions have been significantly improved and the corresponding
font lock faces have been tweaked (hopefully for the better, but feel
free to customize them). Various other small bugs have been fixed and
the documentation and website have been updated.
The two changes in functionality, both of which are optional, are
syntax highlighting for embedded mathematics via LaTeX-like
expressions, and highlighting for bracketed wiki links.
[itex]: http://golem.ph.utexas.edu/~distler/blog/itex2MMLcommands.html
# Markdown Mode 1.4
*June 29, 2007*
Version 1.4 includes a small fix to the regular expression syntax to
fix the Emacs 21 "Invalid escape character syntax." error. Thanks to
Edward O'Connor for the fix.
# Markdown Mode 1.3
*June 5, 2007*
Version 1.3 provides syntax highlighting, insertion commands for all
basic HTML elements, and preview commands for viewing the resulting
HTML in a new buffer of an external browser.
# Markdown Mode 1.2
*May 25, 2007*
Version 1.2 adds element insertion commands and keys for links,
horizontal rules, headers, inline code, and bold and italic text.
Added element insertion commands and keys for links, horizontal rules, headers, inline code, and bold and italic text.
# Markdown Mode 1.1
*May 24, 2007*
Version 1.1 is the initial release of Markdown Mode for Emacs, a major
mode to edit Markdown files in Emacs. This version provides basic
syntax highlighting and element insertion commands for Markdown files.
|