How do I easily write and syntax-highlighted PHP code (or any others programming language) in a Word 2009 document?
10 Answers
You can use Notepad++ to accomplish this in three ways. Just so you know, Notepad++ is a more advanced version of Notepad, which supports syntax highlighting of different code files "out of the box" - PHP included!
Download & install it, fire it up, and load up your PHP file. You should automatically see it beautifully coloured (if not, because the file extension is something other than .php, go to Language -> PHP or Language -> P -> PHP).
If you need to change any of the colours, you can easily do so - just go to Settings -> Styler Configurator. From that menu, you can change the various highlighting and font options, to suit your needs - although the default usually suffices for most.
Then, go to Plugins -> NppExport. From there, you have three options you can consider:
- Export to RTF
- Export to HTML
- Copy all formats to clipboard
Start with the last one - "Copy all formats to clipboard" - which will copy the entire file with the highlighted syntax to the clipboard. Once you click it, then open Microsoft Word, and just hit paste! You should see the beautifully syntax-highlighted code. If something goes wrong, then you can try one of the other options (export to RTF/HTML), although I've never had a problem with the clipboard method.
- 34,847
You could install the .PHPS file type into Apache then copy the output from your browser into Word.
in your http.conf
AddType application/x-httpd-php-source .phps
- 1,068
I found this question looking for the same thing for Outlook on Mac OS, but Notepad++ doesn't exist for OSX and I use Sublime Text (which has the advantage of being cross-platform).
For this there's a plugin called SublimeHighlight.
Assuming you use Sublime Package Control, the steps to install SublimeHighlight are:
- Press cmd shift P
- Run "Package Control: Add channel"
- Paste the github url: https://github.com/n1k0/SublimeHighlight
- Press cmd shift P again, and run "Package Control: Install Package"
- Install the "Highlight" Package, and restart Sublime Text.
Then to copy text you can press cmd shift P, and run "SublimeHighlight: copy to clipboard as HTML" (or RTF). These commands can also be assigned keyboard shortcuts.
Note that on Windows or Linux the shortcut key for the Command Palette is different, but it can be accessed by going to Tools > Command Palette.
- 1,084
Syntax highlighting many languages in Word documents: http://www.planetb.ca/2008/11/syntax-highlight-code-in-word-documents/
- 21
You can using Plugin Syntax Highlight in Ms.Word https://store.office.com/syntax-highlighter-WA104315019.aspx?assetid=WA104315019 . i follow that step and work
- 101
I'm using Easy Code Formatter as highlighted here: https://stackoverflow.com/questions/387453/how-do-you-display-code-snippets-in-ms-word-preserving-format-and-syntax-highlig/55907121#55907121
It also allows you to select line-numbering, highlighting and gives you different theme options which are open-sourced.
- 101
Copy-paste from Code Writer (free software)
https://apps.microsoft.com/store/detail/code-writer/9WZDNCRFHZDT?hl=en-us&gl=US
- 408
Without manually creating character styles for each element of the language and applying them manually, you can't.
Your best bet is to take a screenshot in a editor that does do syntax highlighting and insert that into your document, or copy-and-paste the already colourful code from another program (perhaps a paste bin) and paste it into Word and hope that the colour formatting gets preserved.
- 21,369
You may want to consider abandoning Word altogether and use AsciiDoc instead. AsciiDoc is both a simple markup language and a processor to render documents into other formats. It supports HTML and DocBook. DocBook format can be converted to other formats (e.g. PDF, ePub) using additional tools (e.g. a2x).
By default, it uses GNU source-highlight to color code source code.
- 939

