Skip to content

Commit

Permalink
fix character encoding in conf.py which is disliked by ci/cd pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
turkycat committed Apr 24, 2021
1 parent 05ab6c7 commit 056c47e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
# despite general use in documentation being "network". These aliases
# improve readability and prevent unexpected content changes.
#rst_prolog = ''
rst_epilog = """
rst_epilog = '''
.. reference aliases
.. |network| replace:: :ref:`network<dev-p2p-network-header>`
.. |peer-to-peer network| replace:: :ref:`peer-to-peer network<dev-p2p-network-header>`
Expand All @@ -202,20 +202,20 @@
.. |secp256k1| replace:: `secp256k1 <http://www.secg.org/sec2-v2.pdf>`__
.. OP codes
.. |OP_CHECKMULTISIG| replace:: :term:`OP_CHECKMULTISIG <OP_CHECKMULTISIG>`
.. |OP_CHECKSIG| replace:: :term:`OP_CHECKSIG <OP_CHECKSIG>`
.. |OP_DUP| replace:: :term:`OP_DUP <OP_DUP>`
.. |OP_EQUAL| replace:: :term:`OP_EQUAL <OP_EQUAL>`
.. |OP_EQUALVERIFY| replace:: :term:`OP_EQUALVERIFY <OP_EQUALVERIFY>`
.. |OP_HASH160| replace:: :term:`OP_HASH160 <OP_HASH160>`
.. |OP_RETURN| replace:: :term:`OP_RETURN <OP_RETURN>`
.. |OP_VERIFY| replace:: :term:`OP_VERIFY <OP_VERIFY>`
.. |OP_CHECKMULTISIG| replace:: :term:`"OP_CHECKMULTISIG" <OP_CHECKMULTISIG>`
.. |OP_CHECKSIG| replace:: :term:`"OP_CHECKSIG" <OP_CHECKSIG>`
.. |OP_DUP| replace:: :term:`"OP_DUP" <OP_DUP>`
.. |OP_EQUAL| replace:: :term:`"OP_EQUAL" <OP_EQUAL>`
.. |OP_EQUALVERIFY| replace:: :term:`"OP_EQUALVERIFY" <OP_EQUALVERIFY>`
.. |OP_HASH160| replace:: :term:`"OP_HASH160" <OP_HASH160>`
.. |OP_RETURN| replace:: :term:`"OP_RETURN" <OP_RETURN>`
.. |OP_VERIFY| replace:: :term:`"OP_VERIFY" <OP_VERIFY>`
.. other
.. |Bitcoin URI| replace:: :term:`bitcoin: URI <bitcoin uri>`
.. |Bitcoin URIs| replace:: :term:`bitcoin: URIs <bitcoin uri>`
.. |Bitcoin URI| replace:: :term:`"bitcoin:" URI <bitcoin uri>`
.. |Bitcoin URIs| replace:: :term:`"bitcoin:" URIs <bitcoin uri>`
.. |PaymentDetails| replace:: :term:`PaymentDetails`
.. |PaymentRequest| replace:: :term:`PaymentRequest`
.. |PaymentRequests| replace:: :term:`PaymentRequests <PaymentRequest>`
.. |r| replace:: :term:`“r” <r>`
"""
.. |r| replace:: :term:`"r" <r>`
'''

0 comments on commit 056c47e

Please sign in to comment.