Is there a possibility to make vim helpfiles from pers POD?
I know there is pod2text, pod2html, ...
Is there somting like pod2vim too?
EDIT:
Example
=pod =head1 Headline 1 abc =head1 Headline 2 cde =cut should become
*lib* For Vim version ... ... 1. Headline 1 ............ |lib-head1| 2. Headline 2 ............ |lib-head2| ============================================ 1. Headline 1 *lib-head1* abc ============================================ 2. Headline 2 *lib-head2* cde ============================================ vim:...
filetype=perland hitK, it will show you Perl's documentation. Seeing both POD and Vim's help have about five grammar rules, it should be possible to write a translator. I'd pick a language that has a reputation for being good at string substitutions using regular expressions ... if only I could think of one ...pod2vim: one for exactly what you are after and one for some random facebook profile. Try harder.