Vim Macros for Editing DocBook Documents
Recently, while helping Linux Journal convert its editorial process to use DocBook/XML for articles, I had occasion to convert some old Vim macros for use with the new process. The original macros were key maps or abbreviations for inserting Quark tags and special characters. The new editorial process involves marking or tagging a document in DocBook/XML. From there, a stylesheet is applied to convert the document either to Quark for publication in the print magazine or to HTML for publication on the Web site.
DocBook exists in two basic forms, an SGML version and a newer XML version. DocBook is a markup language that looks similar to HTML. It uses tags with attributes and ampersand sequences for specifying special characters and symbols. Listing 1 contains a short DocBook/XML article.
Listing 1. Sample DocBook/XML Article
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE article SYSTEM "docbookx.dtd">
<article>
<!-- Article information. -->
<articleinfo>
<!-- Article title and abstract. -->
<title>This is an Uninteresting Sample article</title>
<abstract>
<para>This article isn't about anything interesting.</para>
</abstract>
<!-- Author name and bio. -->
<author>
<firstname>John</firstname> <surname>Doe</surname>
<authorblurb>
<para>The author is not a very interesting person.</para>
</authorblurb>
</author>
</articleinfo>
<!-- Body of article. -->
<simplesect>
<title>This is the first of thankfully only
one uninteresting section.</title>
<para>True to form this is not very interesting either.</para>
</simplesect>
</article>
As you can see, the article structure is similar to HTML, except the tag names are different. The DOCTYPE line refers to the DTD (Document Type Definition) used to validate the file. To write useful DocBook, you need the DTD and a program to validate your document so you can determine if it contains any DocBook or XML errors. See the Resources at the end of the article for sites where you can get the DTD and programs for validating your documents.
Vim primarily is a work-a-like replacement for the original vi editor that came with many UNIX systems. Vim also contains many enhancements, including a quite capable macro/scripting language and a GUI version. Most Linux distributions should include Vim. Vim is a moded text editor; that is, keystrokes have different meanings depending on whether you're entering text or manipulating it.
The set of Vim macros used for our project are contained in the following files:
tagtmps.vim: contains tag templates. Tag templates are starting and ending tags and some predefined content that can be inserted into the file you're editing.
tfuncs.vim: contains functions for manipluating tags. Functions are available for inserting, deleting, moving and changing tags.
mfuncs.vim: contains functions that assist in setting up Vim key mappings.
maps.vim: uses the mapping functions defined above to define key mappings for accessing the tag functions defined above.
To use these files start vi and type:
:so tagtmps.vim :so tfuncs.vim :so mfuncs.vim :so maps.vim
Normally, however, you would place these commands into a single file and source only it when you enter vim. For example, place the above files in a sub-directory named vim in your home directory. Then, put the following lines in a file named editdb.vim:
so ~/vim/tagtmps.vim " Tag templates. so ~/vim/tfuncs.vim " Tag functions. so ~/vim/mfuncs.vim " Map functions. so ~/vim/maps.vim " Key mappings.
Now, start vi and type the following to load all the files with one command :so ~/editdb.vim. Another option is to source these files in your .vimrc file so they are loaded whenever you start vim. Your .vimrc file is located in your home directory.
Once these files have been read and processed by vim, the macros are bound to the keyboard. The macros provide the following capabilities:
Inserting a tag template.
Inserting a start tag.
Inserting an end tag.
Tagging a word by placing it between a start tag and an end tag.
Tagging a range of lines with a start tag and an end tag.
Changing a tag.
Inserting special symbols such as the copyright symbol.
Inserting special characters such as accented characters.
Deleting a tag under the cursor.
Moving the cursor to the left (right) of the previous (next) tag.
Moving a tag to the left (right) of the previous (next) word.
Deleting whitespace to the left or right of a tag.
Inserting whitespace to the left or right of a tag.
Mitch Frazier is an Associate Editor for Linux Journal.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Parallel Programming with NVIDIA CUDA
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- Linux-Based X Terminals with XDMCP
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- Why Python?
- Python for Android
- buena información
5 hours 6 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
6 hours 6 min ago - Gnome3 is such a POS. No one
15 hours 34 min ago - Gnome 3 is the biggest POS
15 hours 44 min ago - I didn't knew this thing by
21 hours 48 min ago - Author's reply
1 day 1 hour ago - Link to modlys
1 day 2 hours ago - I use YNAB because of the
1 day 2 hours ago - Search
1 day 7 hours ago - Question
1 day 7 hours ago





Comments
Re: Vim Macros for Editing DocBook Documents
i copied the 4 macro files in the article, but i get the following errors when doing, ":so maps.vim"...
i xb
it sort of just gets worse from there...
Re: Vim Macros for Editing DocBook Documents
It works now when downoading the files from the LJ server.
But there is a bug that inserts closing tags...
For example:
<F2><n> produces:
<itemizedlist>
<listitem><para></para></listitem>
</itemizedlist></para></listitem></itemizedlist>
<F2><p> produces:
<para>
</para></para>
If this could be fixed it would really make editing a lot easier so plz look over the code and post an update :-)
Morten Damsgaard-Madsen
Denmark
Where is the linuxjournal ser
Where is the linuxjournal server that you downloaded the files from?
ftp://www.linuxjournal.com/pu
ftp://ftp.ssc.com/pub/lj/listings/Web/7737.tar.gz
Re: Vim Macros for Editing DocBook Documents
As usual the socurce of errors is right in front of the computer ;-).
The script works as expected - I just forgot that I had the xml.vim script installed which interacts with these macros in funny ways...
Nice work!
/Morten
Re: Vim Macros for Editing DocBook Documents
I use Vim 6.2 and I get the same error.
If you observe the error shown, it says that a variable is undefined.
If you look into mfuncs.vim, you will see that "etags" is defined
in a conditional statement and used anyway subsequently.
Therefore, in the cases where the conditional statement is missed,
"etags" is undefined subsequently.
The author should have a look at the code one again and post here an update.
Re: Vim Macros for Editing DocBook Documents
Same goes for me: the version of vim I use is 6.3. Maybe the macros of this article are meant for an older version ?