We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
context, i'm using live-reload to auto-update views on reveal.js presentations in markdown files
so i have a directory tree like
repo: - assets: | git submodule pointing to reveal.js - mytalk: - mytalk.html - mytalk.md - my-othertalk: ... - tox.ini
where tox.ini just spells something like
tox.ini
[tox] skipsdist=true envlist=live [testenv:live] skip_install=true deps = livereload commands = livereload {{posargs}}
i would like to be able to invoke something like tox -- --open-in-browser mytalk/mytalk.html
tox -- --open-in-browser mytalk/mytalk.html
to have live-reload open $hostname:$randomport/mytalk/mytalk.html instead of going to the server and adding the path there
$hostname:$randomport/mytalk/mytalk.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
context, i'm using live-reload to auto-update views on reveal.js presentations in markdown files
so i have a directory tree like
where
tox.ini
just spells something likei would like to be able to invoke something like
tox -- --open-in-browser mytalk/mytalk.html
to have live-reload open
$hostname:$randomport/mytalk/mytalk.html
instead of going to the server and adding the path there
The text was updated successfully, but these errors were encountered: