<div dir="ltr">I have just tested that, and it works all right. Thanks for fixing this - it was driving me up the wall.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 6, 2019 at 3:47 PM Christoph Willing <<a href="mailto:chris.willing@linux.com">chris.willing@linux.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 7/2/19 5:38 am, JCA wrote:<br>
> I decided to try this in an all-fresh 14.2 installation. I therefore<br>
> created a VM with 14.2, I upgraded every package contained in the most<br>
> recent (as of yesterday) official patches for 14.2, and then proceeded<br>
> to build ReText with sbopkg using the most recent queue file for ReText.<br>
> This took quite a while, for both qt5 and qt5-webkit take a very long<br>
> time to build. Anyway, the resulting ReText still behaves the way I have<br>
> described - the live preview feature does not work.<br>
> <br>
<br>
I saw the same problem. It is due to python/Markdown not having python3<br>
support. I fixed the problem locally by adding (just after the existing<br>
setup.py command):<br>
<br>
# Python 3 support.<br>
if $(python3 -c 'import sys' 2>/dev/null); then<br>
  python3 setup.py install --root=$PKG<br>
fi<br>
<br>
(as copied from python/Markups/Markups.SlackBuild)<br>
<br>
Rebuilding & reinstalling the new Markdown with python3 support enabled<br>
the Preview functionality to work as expected.<br>
<br>
chris<br>
<br>
_______________________________________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org" target="_blank">SlackBuilds-users@slackbuilds.org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
</blockquote></div>