mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch 'stable'
This commit is contained in:
commit
4ca7bfc601
1
CHANGES
1
CHANGES
@ -110,6 +110,7 @@ Features added
|
|||||||
* #4181: autodoc: Sort dictionary keys when possible
|
* #4181: autodoc: Sort dictionary keys when possible
|
||||||
* ``VerbatimHighlightColor`` is a new
|
* ``VerbatimHighlightColor`` is a new
|
||||||
:ref:`LaTeX 'sphinxsetup' <latexsphinxsetup>` key (refs: #4285)
|
:ref:`LaTeX 'sphinxsetup' <latexsphinxsetup>` key (refs: #4285)
|
||||||
|
* Easier customizability of LaTeX macros involved in rendering of code-blocks
|
||||||
|
|
||||||
Bugs fixed
|
Bugs fixed
|
||||||
----------
|
----------
|
||||||
|
@ -272,6 +272,11 @@ The available styling options
|
|||||||
|
|
||||||
.. versionadded:: 1.6.6
|
.. versionadded:: 1.6.6
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
Starting with this colour key, and for all others coming next, the actual
|
||||||
|
names declared to "color" or "xcolor" are prefixed with "sphinx".
|
||||||
|
|
||||||
``verbatimsep``
|
``verbatimsep``
|
||||||
default ``\fboxsep``. The separation between code lines and the frame.
|
default ``\fboxsep``. The separation between code lines and the frame.
|
||||||
|
|
||||||
@ -293,11 +298,6 @@ The available styling options
|
|||||||
default ``{rgb}{0,0,0}`` (black). The colour for the two horizontal rules
|
default ``{rgb}{0,0,0}`` (black). The colour for the two horizontal rules
|
||||||
used by Sphinx in LaTeX for styling a :dudir:`note` type admonition.
|
used by Sphinx in LaTeX for styling a :dudir:`note` type admonition.
|
||||||
|
|
||||||
.. note::
|
|
||||||
|
|
||||||
The actual colour names declared to "color" or "xcolor" are prefixed with
|
|
||||||
"sphinx".
|
|
||||||
|
|
||||||
``noteborder``, ``hintborder``, ``importantborder``, ``tipborder``
|
``noteborder``, ``hintborder``, ``importantborder``, ``tipborder``
|
||||||
default ``0.5pt``. The width of the two horizontal rules.
|
default ``0.5pt``. The width of the two horizontal rules.
|
||||||
|
|
||||||
@ -446,6 +446,11 @@ Environments
|
|||||||
.. versionadded:: 1.5
|
.. versionadded:: 1.5
|
||||||
options ``verbatimwithframe``, ``verbatimwrapslines``,
|
options ``verbatimwithframe``, ``verbatimwrapslines``,
|
||||||
``verbatimsep``, ``verbatimborder``.
|
``verbatimsep``, ``verbatimborder``.
|
||||||
|
.. versionadded:: 1.6.6
|
||||||
|
support for ``:emphasize-lines:`` option
|
||||||
|
.. versionadded:: 1.6.6
|
||||||
|
easier customizability of the formatting via exposed to user LaTeX macros
|
||||||
|
such as ``\sphinxVerbatimHighlightLine``.
|
||||||
- the bibliography uses ``sphinxthebibliography`` and the Python Module index
|
- the bibliography uses ``sphinxthebibliography`` and the Python Module index
|
||||||
as well as the general index both use ``sphinxtheindex``; these environments
|
as well as the general index both use ``sphinxtheindex``; these environments
|
||||||
are wrappers of the ``thebibliography`` and respectively ``theindex``
|
are wrappers of the ``thebibliography`` and respectively ``theindex``
|
||||||
|
@ -6,7 +6,8 @@
|
|||||||
%
|
%
|
||||||
|
|
||||||
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
||||||
\ProvidesPackage{sphinx}[2017/12/11 v1.7 LaTeX package (Sphinx markup)]
|
\ProvidesPackage{sphinx}[2017/12/12 v1.7 LaTeX package (Sphinx markup)]
|
||||||
|
\ProvidesPackage{sphinx}[2017/12/12 v1.6.6 LaTeX package (Sphinx markup)]
|
||||||
|
|
||||||
% provides \ltx@ifundefined
|
% provides \ltx@ifundefined
|
||||||
% (many packages load ltxcmds: graphicx does for pdftex and lualatex but
|
% (many packages load ltxcmds: graphicx does for pdftex and lualatex but
|
||||||
@ -319,8 +320,6 @@
|
|||||||
\sphinxDeclareColorOption{OuterLinkColor}{{rgb}{0.216,0.439,0.388}}
|
\sphinxDeclareColorOption{OuterLinkColor}{{rgb}{0.216,0.439,0.388}}
|
||||||
\sphinxDeclareColorOption{VerbatimColor}{{rgb}{1,1,1}}
|
\sphinxDeclareColorOption{VerbatimColor}{{rgb}{1,1,1}}
|
||||||
\sphinxDeclareColorOption{VerbatimBorderColor}{{rgb}{0,0,0}}
|
\sphinxDeclareColorOption{VerbatimBorderColor}{{rgb}{0,0,0}}
|
||||||
% also no prefix for this one, for consistency (sigh). Color as in minted!
|
|
||||||
\sphinxDeclareColorOption{VerbatimHighlightColor}{{rgb}{0.878,1,1}}
|
|
||||||
% now the colours defined with "sphinx" prefix in their names
|
% now the colours defined with "sphinx" prefix in their names
|
||||||
\newcommand*{\sphinxDeclareSphinxColorOption}[2]{%
|
\newcommand*{\sphinxDeclareSphinxColorOption}[2]{%
|
||||||
% set the initial default
|
% set the initial default
|
||||||
@ -328,6 +327,8 @@
|
|||||||
% set the key handler. The "value" ##1 must be acceptable by \definecolor.
|
% set the key handler. The "value" ##1 must be acceptable by \definecolor.
|
||||||
\define@key{sphinx}{#1}{\definecolor{sphinx#1}##1}%
|
\define@key{sphinx}{#1}{\definecolor{sphinx#1}##1}%
|
||||||
}%
|
}%
|
||||||
|
% Default color chosen to be as in minted.sty LaTeX package!
|
||||||
|
\sphinxDeclareSphinxColorOption{VerbatimHighlightColor}{{rgb}{0.878,1,1}}
|
||||||
% admonition boxes, "light" style
|
% admonition boxes, "light" style
|
||||||
\sphinxDeclareSphinxColorOption{noteBorderColor}{{rgb}{0,0,0}}
|
\sphinxDeclareSphinxColorOption{noteBorderColor}{{rgb}{0,0,0}}
|
||||||
\sphinxDeclareSphinxColorOption{hintBorderColor}{{rgb}{0,0,0}}
|
\sphinxDeclareSphinxColorOption{hintBorderColor}{{rgb}{0,0,0}}
|
||||||
@ -870,21 +871,26 @@
|
|||||||
\expandafter\sphinx@verbatim@checkifhl
|
\expandafter\sphinx@verbatim@checkifhl
|
||||||
\expandafter{\the\numexpr\value{FancyVerbLine}-\spx@verbatim@linedelta}%
|
\expandafter{\the\numexpr\value{FancyVerbLine}-\spx@verbatim@linedelta}%
|
||||||
\ifin@
|
\ifin@
|
||||||
\edef\sphinx@restorefboxsep{\fboxsep\the\fboxsep\relax}%
|
\sphinxVerbatimHighlightLine{#1}%
|
||||||
\fboxsep\z@
|
|
||||||
\colorbox{VerbatimHighlightColor}%
|
|
||||||
{\sphinx@restorefboxsep\sphinx@FancyVerbFormatLine{#1}}%
|
|
||||||
\else
|
\else
|
||||||
\sphinx@FancyVerbFormatLine{#1}%
|
\sphinxVerbatimFormatLine{#1}%
|
||||||
\fi
|
\fi
|
||||||
}%
|
}%
|
||||||
\def\sphinx@FancyVerbFormatLine@wrap #1%
|
\newcommand\sphinxVerbatimHighlightLine[1]{%
|
||||||
{\hsize\linewidth
|
\edef\sphinxrestorefboxsep{\fboxsep\the\fboxsep\relax}%
|
||||||
|
\fboxsep0pt\relax % cf LaTeX bug graphics/4524
|
||||||
|
\colorbox{sphinxVerbatimHighlightColor}%
|
||||||
|
{\sphinxrestorefboxsep\sphinxVerbatimFormatLine{#1}}%
|
||||||
|
% no need to restore \fboxsep here, as this ends up in a \hbox from fancyvrb
|
||||||
|
}%
|
||||||
|
% \sphinxVerbatimFormatLine will be set locally to one of those two:
|
||||||
|
\newcommand\sphinxVerbatimFormatLineWrap[1]{%
|
||||||
|
\hsize\linewidth
|
||||||
\vtop{\raggedright\hyphenpenalty\z@\exhyphenpenalty\z@
|
\vtop{\raggedright\hyphenpenalty\z@\exhyphenpenalty\z@
|
||||||
\doublehyphendemerits\z@\finalhyphendemerits\z@
|
\doublehyphendemerits\z@\finalhyphendemerits\z@
|
||||||
\strut #1\strut}%
|
\strut #1\strut}%
|
||||||
}%
|
}%
|
||||||
\def\sphinx@FancyVerbFormatLine@nowrap #1{\hb@xt@\linewidth{\strut #1\hss}}%
|
\newcommand\sphinxVerbatimFormatLineNoWrap[1]{\hb@xt@\linewidth{\strut #1\hss}}%
|
||||||
\def\sphinx@FancyVerbCodesHook
|
\def\sphinx@FancyVerbCodesHook
|
||||||
{\FV@SetLineNo\edef\spx@verbatim@linedelta{\the\value{FancyVerbLine}}}%
|
{\FV@SetLineNo\edef\spx@verbatim@linedelta{\the\value{FancyVerbLine}}}%
|
||||||
\g@addto@macro\FV@SetupFont{%
|
\g@addto@macro\FV@SetupFont{%
|
||||||
@ -945,7 +951,7 @@
|
|||||||
% to achieve this without extensive rewrite of fancyvrb.
|
% to achieve this without extensive rewrite of fancyvrb.
|
||||||
% - The (not used in sphinx) obeytabs option to Verbatim is
|
% - The (not used in sphinx) obeytabs option to Verbatim is
|
||||||
% broken by this change (showtabs and tabspace work).
|
% broken by this change (showtabs and tabspace work).
|
||||||
\let\sphinx@FancyVerbFormatLine\sphinx@FancyVerbFormatLine@wrap
|
\let\sphinxVerbatimFormatLine\sphinxVerbatimFormatLineWrap
|
||||||
\let\FV@Space\spx@verbatim@space
|
\let\FV@Space\spx@verbatim@space
|
||||||
% Allow breaks at special characters using \PYG... macros.
|
% Allow breaks at special characters using \PYG... macros.
|
||||||
\sphinxbreaksatspecials
|
\sphinxbreaksatspecials
|
||||||
@ -953,7 +959,7 @@
|
|||||||
\expandafter\def\expandafter\sphinx@FancyVerbCodesHook\expandafter
|
\expandafter\def\expandafter\sphinx@FancyVerbCodesHook\expandafter
|
||||||
{\sphinx@FancyVerbCodesHook\sphinxbreaksviaactive}%
|
{\sphinx@FancyVerbCodesHook\sphinxbreaksviaactive}%
|
||||||
\else % end of conditional code for wrapping long code lines
|
\else % end of conditional code for wrapping long code lines
|
||||||
\let\sphinx@FancyVerbFormatLine\sphinx@FancyVerbFormatLine@nowrap
|
\let\sphinxVerbatimFormatLine\sphinxVerbatimFormatLineNoWrap
|
||||||
\fi
|
\fi
|
||||||
\let\FancyVerbFormatLine\sphinxFancyVerbFormatLine
|
\let\FancyVerbFormatLine\sphinxFancyVerbFormatLine
|
||||||
% hook into \FancyVerbCodes to recover at first code line the numbering offset
|
% hook into \FancyVerbCodes to recover at first code line the numbering offset
|
||||||
|
Loading…
Reference in New Issue
Block a user