From 056c47eb6d493c28df9e7e638a3123c8b22966ec Mon Sep 17 00:00:00 2001 From: Jesse Frush Date: Fri, 23 Apr 2021 18:43:44 -0700 Subject: [PATCH] fix character encoding in conf.py which is disliked by ci/cd pipeline --- conf.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/conf.py b/conf.py index df569ae..19bd5b5 100644 --- a/conf.py +++ b/conf.py @@ -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` .. |peer-to-peer network| replace:: :ref:`peer-to-peer network` @@ -202,20 +202,20 @@ .. |secp256k1| replace:: `secp256k1 `__ .. OP codes -.. |OP_CHECKMULTISIG| replace:: :term:`“OP_CHECKMULTISIG” ` -.. |OP_CHECKSIG| replace:: :term:`“OP_CHECKSIG” ` -.. |OP_DUP| replace:: :term:`“OP_DUP” ` -.. |OP_EQUAL| replace:: :term:`OP_EQUAL ` -.. |OP_EQUALVERIFY| replace:: :term:`“OP_EQUALVERIFY” ` -.. |OP_HASH160| replace:: :term:`“OP_HASH160” ` -.. |OP_RETURN| replace:: :term:`“OP_RETURN” ` -.. |OP_VERIFY| replace:: :term:`“OP_VERIFY” ` +.. |OP_CHECKMULTISIG| replace:: :term:`"OP_CHECKMULTISIG" ` +.. |OP_CHECKSIG| replace:: :term:`"OP_CHECKSIG" ` +.. |OP_DUP| replace:: :term:`"OP_DUP" ` +.. |OP_EQUAL| replace:: :term:`"OP_EQUAL" ` +.. |OP_EQUALVERIFY| replace:: :term:`"OP_EQUALVERIFY" ` +.. |OP_HASH160| replace:: :term:`"OP_HASH160" ` +.. |OP_RETURN| replace:: :term:`"OP_RETURN" ` +.. |OP_VERIFY| replace:: :term:`"OP_VERIFY" ` .. other -.. |Bitcoin URI| replace:: :term:`“bitcoin:” URI ` -.. |Bitcoin URIs| replace:: :term:`“bitcoin:” URIs ` +.. |Bitcoin URI| replace:: :term:`"bitcoin:" URI ` +.. |Bitcoin URIs| replace:: :term:`"bitcoin:" URIs ` .. |PaymentDetails| replace:: :term:`PaymentDetails` .. |PaymentRequest| replace:: :term:`PaymentRequest` .. |PaymentRequests| replace:: :term:`PaymentRequests ` -.. |r| replace:: :term:`“r” ` -""" +.. |r| replace:: :term:`"r" ` +'''