File tree Expand file tree Collapse file tree 2 files changed +14
-15
lines changed
Expand file tree Collapse file tree 2 files changed +14
-15
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22"""
3- doilinks
4- ~~~~~~~~
5- Extension to add links to DOIs. With this extension you can use e.g.
6- :doi:`10.1016/S0022-2836(05)80360-2` in your documents. This will
7- create a link to a DOI resolver
8- (``https://doi.org/10.1016/S0022-2836(05)80360-2``).
9- The link caption will be the raw DOI.
10- You can also give an explicit caption, e.g.
11- :doi:`Basic local alignment search tool <10.1016/S0022-2836(05)80360-2>`.
12-
13- :copyright: Copyright 2015 Jon Lund Steffensen. Based on extlinks by
14- the Sphinx team.
15- :license: BSD.
3+ doilinks
4+ ~~~~~~~~
5+ Extension to add links to DOIs. With this extension you can use e.g.
6+ :doi:`10.1016/S0022-2836(05)80360-2` in your documents. This will
7+ create a link to a DOI resolver
8+ (``https://doi.org/10.1016/S0022-2836(05)80360-2``).
9+ The link caption will be the raw DOI.
10+ You can also give an explicit caption, e.g.
11+ :doi:`Basic local alignment search tool <10.1016/S0022-2836(05)80360-2>`.
12+
13+ :copyright: Copyright 2015 Jon Lund Steffensen. Based on extlinks by
14+ the Sphinx team.
15+ :license: BSD.
1616"""
1717
1818from docutils import nodes , utils
Original file line number Diff line number Diff line change 11#!python
2- """ Detect bitness (32 or 64) of Mingw-w64 gcc build target on Windows.
3- """
2+ """Detect bitness (32 or 64) of Mingw-w64 gcc build target on Windows."""
43
54import re
65from subprocess import run
You can’t perform that action at this time.
0 commit comments