Major changes since 1.7: - 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. - 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. - Make indentation work when the previous line is not indented. - 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. - Set tab width to 4, the natural tab width for Markdown documents. - Stop announcing “TAB” in the minibuffer when tab is pressed.
36 lines
902 B
Makefile
36 lines
902 B
Makefile
# $NetBSD: Makefile,v 1.4 2011/10/03 16:59:39 minskim Exp $
|
|
|
|
DISTNAME= markdown-mode
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}-1.8.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://jblevins.org/projects/markdown-mode/
|
|
DIST_SUBDIR= ${DISTNAME}-1.8.1
|
|
EXTRACT_SUFX= .el
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://jblevins.org/projects/markdown-mode/
|
|
COMMENT= Emacs major mode for editing Markdown-formatted text files
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_LANGUAGES= # none
|
|
NO_CONFIGURE= yes
|
|
|
|
INSTALLATION_DIRS= ${EMACS_LISPPREFIX}
|
|
|
|
EMACS_MODULES= base
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
|
|
do-build:
|
|
${EMACS_BIN} --no-init-file --no-site-file -batch \
|
|
-f batch-byte-compile ${WRKSRC}/markdown-mode.el
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} markdown-mode.el markdown-mode.elc \
|
|
${DESTDIR}${EMACS_LISPPREFIX}/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|