HyukjinKwon commented on issue #27182: [SPARK-28752][BUILD][DOCS][FOLLOW-UP] Render examples imported from Jekyll properly via Rouge URL: https://github.com/apache/spark/pull/27182#issuecomment-573483739 Thanks. I double checked and here's the HTML output: Pygment: ```html <div data-lang="python" class="tab-pane active" id="tab_python_0"> <div class="highlight"> <pre class="codehilite"> <code> <span class="kn">import</span> ... <span class="p">()</span> </code> </pre> </div> <div> <small>Find full example code at "examples/src/main/python/sql/arrow.py" in the Spark repo.</small> </div> </div> ``` Without this PR: ```html <div data-lang="python" class="tab-pane active" id="tab_python_0"> <p> <span class="kn">import</span> ... </p> <p> <span class="c1"># Enable Arrow-based columnar data transfers</span> ... </p> ... <div> <small>Find full example code at "examples/src/main/python/sql/arrow.py" in the Spark repo.</small> </div> </div> ``` With this PR: ```html <div data-lang="python" class="tab-pane active" id="tab_python_0"> <div class="highlight"> <pre class="codehilite"> <code> <span class="kn">import</span> ... <span class="p">()</span> </code> </pre> </div> <div> <small>Find full example code at "examples/src/main/python/sql/arrow.py" in the Spark repo.</small> </div> </div> ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
