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
On the getting started page there's a couple of code snippets that are meant to by copied, like this one:
However, when you copy it, you get this snippet in your clippboard:
$ podman run -dt -p 8080:80/tcp docker.io/library/httpd
And when I run it, I unsurprisingly get:
$ $ podman run -dt -p 8080:80/tcp docker.io/library/httpd zsh: command not found: $
This is because there's a leading $ at the front of line. one way to solve this is with the css approach. Here's some faux code:
$
<style> .no-select { user-select: none; } </style> <div class="snippet"> <span class=""no-select">$ </span>podman run -dt -p 8080:80/tcp docker.io/library/httpd </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On the getting started page there's a couple of code snippets that are meant to by copied, like this one:
However, when you copy it, you get this snippet in your clippboard:
And when I run it, I unsurprisingly get:
This is because there's a leading
$
at the front of line. one way to solve this is with the css approach. Here's some faux code:The text was updated successfully, but these errors were encountered: