1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-18 03:50:30 +01:00

Added documentation for surround, changed F5 key assignment and added functions for

generating html out of reSt file.
This commit is contained in:
2010-07-18 21:53:11 +02:00
parent 1560333f72
commit 51fd5661ec
2 changed files with 311 additions and 2 deletions

View File

@@ -1,4 +1,91 @@
" Some common settings for all reSt files
set textwidth=80
set formatoptions+=tn
set makeprg=rst2html.py\ %\ %.html
map <F5> :make <cr>
set spell
set smartindent
set autoindent
set formatoptions+=w
map <F5> :call Rst2Blogger()<cr>
" Simple function, that translates reSt text into html with specified format,
" suitable to copy and paste into blogger post.
fun! Rst2Blogger()
python << EOF
from docutils import core
from docutils.writers.html4css1 import Writer, HTMLTranslator
import vim
class NoHeaderHTMLTranslator(HTMLTranslator):
def __init__(self, document):
HTMLTranslator.__init__(self,document)
self.head_prefix = ['','','','','']
self.body_prefix = []
self.body_suffix = []
self.stylesheet = []
self.head = []
self.meta = []
self.generator = ('')
self.initial_header_level = 2
self.section_level = 2
def visit_document(self, node):
pass
def depart_document(self, node):
pass
def visit_section(self, node):
pass
def depart_section(self, node):
pass
_w = Writer()
_w.translator_class = NoHeaderHTMLTranslator
def blogify(string):
return core.publish_string(string,writer=_w)
bufcontent = "\n".join(vim.current.buffer)
name = vim.current.buffer.name
if name.lower().endswith(".rst"):
name = name[:-4] + ".html"
vim.command('new')
vim.current.buffer[:] = blogify(bufcontent).split("\n")
vim.command('saveas %s' % name)
vim.command('bd')
else:
print "This is not reSt file. File should have '.rst' extension."
EOF
endfun
" This is similar to that above, but creates full html document
fun! Restify()
python << EOF
from docutils import core
from docutils.writers.html4css1 import Writer, HTMLTranslator
import vim
_w = Writer()
_w.translator_class = HTMLTranslator
def reSTify(string):
return core.publish_string(string,writer=_w)
bufcontent = "\n".join(vim.current.buffer)
name = vim.current.buffer.name
if name.lower().endswith(".rst"):
name = name[:-4] + ".html"
vim.command('new')
vim.current.buffer[:] = reSTify(bufcontent).split("\n")
vim.command('saveas %s' % name)
vim.command('bd')
else:
print 'To nie jest plik reSt!'
EOF
endfun