functions-framework-dart icon indicating copy to clipboard operation
functions-framework-dart copied to clipboard

Make the README more copy-pastable

Open grant opened this issue 4 years ago • 1 comments

The README has many sections where I can't copy and paste the commands:

$ cd examples/hello
$ docker build -t app .
...

$ docker run -it -p 8080:8080 --name demo --rm app
Listening on :8080

It would be nice if the README allowed me to copy and paste the commands, like this:

cd examples/hello
docker build -t app .
# ...

docker run -it -p 8080:8080 --name demo --rm app
# Listening on :8080

grant avatar Feb 05 '21 02:02 grant

PRs welcome 😄

kevmoo avatar Feb 13 '21 05:02 kevmoo