Notepad++ and useful plugins

Updated . Posted . Visible to the public.

Pandoc/Markdown Export

install the NppExec-Plugin, then select Extensions -> NppExport -> Execute... (or hit F6). You can select or edit scripts here, e.g. PDF-Export through pdflatex

cd "$(CURRENT_DIRECTORY)"
pandoc "$(FILE_NAME)" -o "$(NAME_PART).pdf" -V geometry:margin=1in --latex-engine=pdflatex

or export to .docx

cd "$(CURRENT_DIRECTORY)"
pandoc "$(FILE_NAME)" -o "$(NAME_PART).docx"

see this GIST: https://gist.github.com/jrgcmu/3ccc11c0412f45f9a6a4

PreviewHTML
: v1.2 available through the Plugin-Manager is outdated, get v1.3 from http://chiselapp.com/user/vor0nwe/repository/npp_preview/zip/Preview_plugin.zip?uuid=publish, for use with Markdown (needs python): http://superuser.com/a/773653 or with pandoc, use this filter (in %APPDATA%\Notepad++\plugins\config\PreviewHTML)

[Markdown]  
Extension=.md  
Language=Markdown  
Command=pandoc -f markdown -t html5 "%1"  

Emmet

available through the Plugin-Manager

Compare

available through the Plugin-Manager

Markdown Syntax Highlighting

https://github.com/Edditoria/markdown_npp_zenburn

Erlang Syntax Highlighting

The canonical way http://www.roberthorvick.com/2009/07/08/syntax-highlighing-for-erlang-in-notepad/ -- I have another one, which is a little different, but I cannot find the source anymore

User Defined Syntax Highlighting has to be integrated into %APPDATA%\Notepad++\userDefineLang.xml

Markus
Last edit
Markus
Keywords
npp
Posted by Markus to Markus's deck (2015-04-23 09:06)