Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; '(at': 0.04; 'output': 0.05; 'string.': 0.05; 'string': 0.09; '101': 0.09; 'character,': 0.09; 'converted': 0.09; 'doing?': 0.09; 'escape': 0.09; 'oh,': 0.09; 'output,': 0.09; 'wrong,': 0.09; 'python': 0.11; '"some': 0.16; 'backslash': 0.16; 'carriage': 0.16; 'elsewhere.': 0.16; 'escapes': 0.16; 'for,': 0.16; 'formatted': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'integer.': 0.16; 'languages)': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'restructured': 0.16; 'string:': 0.16; 'symbols': 0.16; 'followed': 0.16; 'appropriate': 0.16; 'wrote:': 0.18; '(not': 0.18; 'variable': 0.18; 'normally': 0.19; 'practices,': 0.19; 'input': 0.22; 'programming': 0.22; 'print': 0.22; 'header:User-Agent:1': 0.23; 'error': 0.23; 'format,': 0.24; 'text,': 0.24; 'text.': 0.24; 'this:': 0.26; 'least': 0.26; 'skip:" 20': 0.27; 'header:In-Reply-To:1': 0.27; 'tried': 0.27; 'point': 0.28; 'character': 0.29; "doesn't": 0.30; "i'm": 0.30; "skip:' 10": 0.31; 'argue': 0.31; "d'aprano": 0.31; 'lies': 0.31; 'noted': 0.31; 'steven': 0.31; 'work:': 0.31; 'supposed': 0.32; 'another': 0.32; 'text': 0.33; 'becomes': 0.33; 'raw': 0.33; 'maybe': 0.34; 'something': 0.35; 'convert': 0.35; 'hundreds': 0.35; 'received:84': 0.35; 'but': 0.35; 'there': 0.35; 'i.e.': 0.36; 'doing': 0.36; 'searching': 0.37; 'clear': 0.37; 'convention': 0.38; 'generic': 0.38; 'to:addr:python-list': 0.38; 'little': 0.38; 'explain': 0.39; 'does': 0.39; 'to:addr:python.org': 0.39; 'either': 0.39; 'skip:p 20': 0.39; 'skip:u 10': 0.60; 'above,': 0.60; 'simply': 0.61; 'first': 0.61; 'show': 0.63; 'name': 0.63; 'more': 0.64; 'risk': 0.72; 'inline': 0.74; '102': 0.84; 'circles': 0.84; 'me).': 0.84; 'or:': 0.84; 'terrible': 0.84; 'tricky': 0.84; 'doubling': 0.91; 'journey': 0.93 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=ZuBjKrLG c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=mlFM_a_ONtUA:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=kZ7UWmmPAAAA:8 a=FTF__J8azixnoIaRvQEA:9 a=QEXdDO2ut3YA:10 X-AUTH: mrabarnett@:2500 Date: Mon, 02 Mar 2015 14:37:50 +0000 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: rst and pypandoc References: <54f458a5$0$13003$c3e8da3$5496439d@news.astraweb.com> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.19 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 79 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1425307075 news.xs4all.nl 2858 [2001:888:2000:d::a6]:58456 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:86738 On 2015-03-02 13:51, alb wrote: > Hi Steven, > > Steven D'Aprano wrote: > [] >> Since \r is an escape character, that will give you carriage return followed >> by "ef{fig:abc". >> >> The solution to that is to either escape the backslash: >> >> i = '\\ref{fig:abc}' >> >> >> or use a raw string: >> >> i = r'\\ref{fig:abc}' > > ok, maybe I wasn't clear from the very beginning, but searching for a > solution is a journey that takes time and patience. > > The worngly named variable i (as noted below), contains the *i*nput of > my text which is supposed to be restructured text. The output is what > pypandoc spits out after conversion: > > i = "\\begin{tag}{%s}{%s}\n %s\n \\end{tag}" % (some, restructured, text) > o = pypandoc.convert(i, 'latex', format='rst') > > Now if i contains some inline text, i.e. text I do not want to convert > in any other format, I need my text to be formatted accordingly in order > to inject some escape symbols in i. > > Rst escapes with "\", but unfortunately python also uses "\" for escaping! > >> >> Oh, by the way, "i" is normally a terrible variable name for a string. Not >> only doesn't it explain what the variable is for, but there is a very >> strong convention in programming circles (not just Python, but hundreds of >> languages) that "i" is a generic variable name for an integer. Not a >> string. > > I'm not in the position to argue about good practices, I simply found > more appropriate to have i for input and o for output, considering they > are used like this: > > i = "some string" > o = pypandoc.convert(i, ...) > f.write(o) > > with very little risk to cause misunderstanding. > >> Can you show what you are doing? Escaping the backslash with another >> backslash does work: >> >> py> for c in '\\ref': >> ... print(c, ord(c)) >> ... >> \ 92 >> r 114 >> e 101 >> f 102 >> >> so either you are doing something wrong, or the error lies elsewhere. > > As said above, the string is converted by pandoc first and then printed. > At this point the escaping becomes tricky (at least to me). > > In [17]: inp = '\\ref{fig:abc}' > > In [18]: print pypandoc.convert(inp, 'latex', format='rst') > ref\{fig:abc\} > Have you tried escaping the escape character by doubling the backslash? inp = '\\\\ref{fig:abc}' or: inp = r'\\ref{fig:abc}'