markdown-mode: update to 2.4.
Change MASTER_SITE to author's github. 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)
This commit is contained in:
parent
d6bc4c0595
commit
5d9f4977e5
2 changed files with 10 additions and 12 deletions
|
@ -1,18 +1,16 @@
|
||||||
# $NetBSD: Makefile,v 1.9 2017/09/03 08:53:15 wiz Exp $
|
# $NetBSD: Makefile,v 1.10 2020/08/18 04:49:38 tnn Exp $
|
||||||
|
|
||||||
DISTNAME= markdown-mode
|
DISTNAME= markdown-mode-2.4
|
||||||
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}-2.1
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= https://jblevins.org/projects/markdown-mode/
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=jrblevin/}
|
||||||
DIST_SUBDIR= ${DISTNAME}-2.1
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
||||||
EXTRACT_SUFX= .el
|
|
||||||
|
|
||||||
MAINTAINER= minskim@NetBSD.org
|
MAINTAINER= minskim@NetBSD.org
|
||||||
HOMEPAGE= https://jblevins.org/projects/markdown-mode/
|
HOMEPAGE= https://jblevins.org/projects/markdown-mode/
|
||||||
COMMENT= Emacs major mode for editing Markdown-formatted text files
|
COMMENT= Emacs major mode for editing Markdown-formatted text files
|
||||||
LICENSE= gnu-gpl-v2
|
LICENSE= gnu-gpl-v2
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}
|
|
||||||
USE_LANGUAGES= # none
|
USE_LANGUAGES= # none
|
||||||
NO_CONFIGURE= yes
|
NO_CONFIGURE= yes
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
$NetBSD: distinfo,v 1.6 2017/05/09 05:09:15 pho Exp $
|
$NetBSD: distinfo,v 1.7 2020/08/18 04:49:38 tnn Exp $
|
||||||
|
|
||||||
SHA1 (markdown-mode-2.1/markdown-mode.el) = f6bd0b37a26fa6861c0da8fc008ecb9870eb7f0d
|
SHA1 (markdown-mode-2.4.tar.gz) = 8f0751c16b97d31778cc10917f1292e88288472b
|
||||||
RMD160 (markdown-mode-2.1/markdown-mode.el) = 09fdbb72bd5550a552df914fb8212806f3f35cf2
|
RMD160 (markdown-mode-2.4.tar.gz) = 1234ccba4acc4f87a7bc0348efd702f81e7529a2
|
||||||
SHA512 (markdown-mode-2.1/markdown-mode.el) = 572ec81d5abee5d0b2e4e8fb51a33627894e6ed5f423e977acbfacd14a8ccba58fd611bb0a4d05980f6c991daf2fdae304be3e2fcf2ac78499c034f0a2bd4645
|
SHA512 (markdown-mode-2.4.tar.gz) = 8bf2acd7f402c036c57521340d26cea150935964f04f1343c2e17147d63226c815150be62c0b79a2ba48e55b3155d94f38caf1ec43c21d4f32dee6e73cc261a0
|
||||||
Size (markdown-mode-2.1/markdown-mode.el) = 255517 bytes
|
Size (markdown-mode-2.4.tar.gz) = 211229 bytes
|
||||||
|
|
Loading…
Reference in a new issue