mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 16:51:52 -04:00
Misaka is a CFFI-based binding for Hoedown, a fast markdown processing library written in C. It features a fast HTML renderer and functionality to make custom renderers (e.g. man pages or LaTeX). WWW: https://github.com/FSX/misaka
15 lines
659 B
Python
15 lines
659 B
Python
# textproc/html5-tidy doesn't provide a 'tidy' binary
|
|
# and BINARY_ALIAS doesn't work at test: time
|
|
# TODO: Ask upstream to support a TIDY_BIN variable
|
|
|
|
--- tests/utils.py.orig 2019-09-06 11:18:46 UTC
|
|
+++ tests/utils.py
|
|
@@ -5,7 +5,7 @@ from subprocess import Popen, PIPE, STDOUT
|
|
|
|
def clean_html(dirty_html):
|
|
input_html = dirty_html.encode('utf-8')
|
|
- p = Popen(['tidy', '--show-body-only', '1', '--quiet', '1', '--show-warnings', '0', '-utf8'],
|
|
+ p = Popen(['tidy5', '--show-body-only', '1', '--quiet', '1', '--show-warnings', '0', '-utf8'],
|
|
stdout=PIPE, stdin=PIPE, stderr=STDOUT)
|
|
stdout, stderr = p.communicate(input=input_html)
|
|
|