Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
e48a5b5a
Kaydet (Commit)
e48a5b5a
authored
Kas 16, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23751 -- Fixed code snippet formatting in docs PDF.
Thanks Graham Wideman for the patch.
üst
101dbeb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
11 deletions
+19
-11
djangodocs.py
docs/_ext/djangodocs.py
+19
-11
No files found.
docs/_ext/djangodocs.py
Dosyayı görüntüle @
e48a5b5a
...
...
@@ -125,14 +125,8 @@ def visit_snippet_latex(self, node):
"""
Latex document generator visit handler
"""
self
.
verbatim
=
''
code
=
node
.
rawsource
.
rstrip
(
'
\n
'
)
def
depart_snippet_latex
(
self
,
node
):
"""
Latex document generator depart handler.
"""
code
=
self
.
verbatim
.
rstrip
(
'
\n
'
)
lang
=
self
.
hlsettingstack
[
-
1
][
0
]
linenos
=
code
.
count
(
'
\n
'
)
>=
self
.
hlsettingstack
[
-
1
][
1
]
-
1
fname
=
node
[
'filename'
]
...
...
@@ -151,9 +145,14 @@ def depart_snippet_latex(self, node):
linenos
=
linenos
,
**
highlight_args
)
self
.
body
.
append
(
'
\n
{
\\
colorbox[rgb]{0.9,0.9,0.9}'
'{
\\
makebox[
\\
textwidth][l]'
'{
\\
small
\\
texttt{
%
s}}}}
\n
'
%
(
fname
,))
self
.
body
.
append
(
'
\n
{
\\
colorbox[rgb]{0.9,0.9,0.9}'
'{
\\
makebox[
\\
textwidth][l]'
'{
\\
small
\\
texttt{
%
s}}}}
\n
'
%
(
# Some filenames have '_', which is special in latex.
fname
.
replace
(
'_'
,
r'\_'
),
)
)
if
self
.
table
:
hlcode
=
hlcode
.
replace
(
'
\\
begin{Verbatim}'
,
...
...
@@ -165,7 +164,16 @@ def depart_snippet_latex(self, node):
hlcode
=
hlcode
.
rstrip
()
+
'
\n
'
self
.
body
.
append
(
'
\n
'
+
hlcode
+
'
\\
end{
%
sVerbatim}
\n
'
%
(
self
.
table
and
'Original'
or
''
))
self
.
verbatim
=
None
# Prevent rawsource from appearing in output a second time.
raise
nodes
.
SkipNode
def
depart_snippet_latex
(
self
,
node
):
"""
Latex document generator depart handler.
"""
pass
class
SnippetWithFilename
(
Directive
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment