qmlbook / qt6book

The Qt 6 Book - A book about QML
https://www.qt.io/product/qt6/qml-book
Other
335 stars 110 forks source link

Make code snippet copiable #218

Open MartinDelille opened 1 year ago

MartinDelille commented 1 year ago

In github markdown code blocks, we have a small icon allowing us to copy the code snippet when hovering it:

// FileIO.qml (good)
QtObject {
    function write(path, text) {};
    function read(path) { return "TEXT" }
}

It would be nice to have this in this book!