Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!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.009 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; ';-)': 0.03; 'sphinx': 0.09; 'subject:using': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; '24,': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'pfxlen:0': 0.19; '(in': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'michael': 0.29; 'am,': 0.29; 'received:209.85.217': 0.29; 'message-id:@mail.gmail.com': 0.30; 'doc': 0.31; 'figure': 0.32; 'run': 0.32; 'could': 0.34; 'received:209.85': 0.35; 'convert': 0.35; 'received:google.com': 0.35; 'received:209': 0.37; 'whatever': 0.38; 'how': 0.40; 'even': 0.60; 'to:addr:gmail.com': 0.65; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=WM6REaLnbRFy41vbi7BNZofb5fkRChpZlZ2/UmzopRc=; b=u0jmqfxB4Iu2cUwt9NIdeGmZWiLUs4J5jWb1ki5h9II4tFteo+PPSw8VMg8D2VKqkI x39HoOYSk7RFiIK8jeP7iwHcJUnQNKUV22LDEvlR/Cgy+3+Szq/lt4k03WFOsYGkl3cX CFINgVUda2nixhPwWDT3+ymgcsIaoJVAKvc961R1zVueY1a4XQRGiiLa+n+v95RbjW/C sHDa51XAI8TSrVOsvHXmSDdVI5ubkh4Er/DUdJK0aaUVMkMb5tcfrbQWjuCfPmnceBe4 IRz5Y9SlmD72qbZEwzOJv+XAaF0j/FwizBozNxbrfYeJFssR+PbV+mxg3M50OGm9vOuF X9MA== X-Received: by 10.112.199.194 with SMTP id jm2mr17314551lbc.21.1366824134952; Wed, 24 Apr 2013 10:22:14 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: "R. Michael Weylandt" Date: Wed, 24 Apr 2013 18:21:54 +0100 Subject: Re: using pandoc instead of rst to document python To: Peng Yu Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1366824143 news.xs4all.nl 15975 [2001:888:2000:d::a6]:53084 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:44274 On Wed, Apr 24, 2013 at 12:14 AM, Peng Yu wrote: > I currently use sphinx to generate the doc (in rst). How to figure it > to support pandoc's markdown? If I understand the desired workflow, it's just 1) write in markdown; 2) then run pandoc to convert to rst; 3) then run Sphinx to render html or whatever you want. You could even script this in python ;-) Michael