I'm compiling some rst files on a remote machine to generate html files. I want to view the generated html in my browser to see if it's right, make some changes to the rst, then view them again, etc. I'd like this feedback loop to be as tight as possible. I just started using a Mac, and I'm very new to it. Downloading the html every time is annoying. I was using WinSCP for stuff like this before.
|
feedback
|
|
A .rst file is a reStructuredText file. If you generate .html files from that, the remote server should contain the .html files. I would therefore configure an HTTP server on that machine to serve HTML from whatever folders you are generating .html into. The trick then is to disable caching so that you get to see changes by pressing F5 (or reload). If you cannot configure an HTTP server, I would consider using something like SSHFS/SAMBA/NFS to share that directory and then browse it using a file:// URL. | |||
feedback
|
