The interactive tty wasn't necessary and caused the zip file to be corrupted.
Fixes #459
Also switched code snippet syntax highlighting from console to bash for slightly better results. The console language is the same as sh-session, and expects the shell session to include command prompts and outputs/results. e.g.
With console:
$ echo hi
hi
$ echo foo | tr f b
boo
With sh-session:
$ echo hi
hi
$ echo foo | tr f b
boo
However, using sh-session is not as convenient to copy-paste because it includes the prompts and outputs. Using bash allows you to paste directly into a terminal. e.g.
The interactive tty wasn't necessary and caused the zip file to be corrupted.
Fixes #459
Also switched code snippet syntax highlighting from
console
tobash
for slightly better results. Theconsole
language is the same assh-session
, and expects the shell session to include command prompts and outputs/results. e.g.With
console
:With
sh-session
:However, using
sh-session
is not as convenient to copy-paste because it includes the prompts and outputs. Usingbash
allows you to paste directly into a terminal. e.g.With
bash
: