pejuko / coderay_bash

Simple bash scanner for highlighting with coderay.
coderay_bash
MIT License
9 stars 5 forks source link

Following file output is not correct. Thanks. #13

Closed zw963 closed 9 years ago

zw963 commented 9 years ago
#!/bin/sh

sudo qemu-kvm -m 768 \
    -boot d \
    -drive file=/bak/kvm/salix.qcow,cache=writeback \
    -cdrom /ntfs-d/ISO/salix64-openbox-14.1.iso -vnc :3

output with coderay, I got:

#!/bin/sh

sudo qemu-kvm -m 768 \
    -boot d \
    -drive file=writeback \
    -cdrom /ntfs-d/ISO/salix64-openbox-14.1.iso -vnc :3

I don't know why /bak/kvm/salix.qcow,cache= entire is stripped.

Thanks.

pejuko commented 9 years ago

should be fixed. new gem has been released. thanks

zw963 commented 9 years ago

Thanks, it is worked.