mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-11-03 11:07:02 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			851 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			851 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
 | 
						|
from __future__ import with_statement
 | 
						|
 | 
						|
__license__   = 'GPL v3'
 | 
						|
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
 | 
						|
__docformat__ = 'restructuredtext en'
 | 
						|
 | 
						|
import os
 | 
						|
 | 
						|
 | 
						|
from sphinx.builders.latex import LaTeXBuilder
 | 
						|
 | 
						|
class LaTeXHelpBuilder(LaTeXBuilder):
 | 
						|
    name = 'mylatex'
 | 
						|
 | 
						|
    def finish(self):
 | 
						|
        LaTeXBuilder.finish(self)
 | 
						|
        self.info('Fixing Cyrillic characters...')
 | 
						|
        tex = os.path.join(self.outdir, 'calibre.tex')
 | 
						|
        with open(tex, 'r+b') as f:
 | 
						|
            raw = f.read()
 | 
						|
            for x in (b'Михаил Горбачёв', b'Фёдор Миха́йлович Достоевский'):
 | 
						|
                raw = raw.replace(x, br'{\fontencoding{T2A}\selectfont %s}' % (x.replace(b'а́', b'a')))
 | 
						|
            f.seek(0)
 | 
						|
            f.write(raw)
 |