From a7e040170b7eafda61377bd40c292b74aa0cf80a Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 20 Jun 2024 21:04:28 -0400 Subject: [PATCH] docs: add link to web demo source code --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb785ca..183a4b3 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ const output: number = czv.rowCount({ console.log(output); ``` +You can view source code for an example website using `czv-wasm` at https://github.com/rzmk/czv/tree/main/czv-wasm/examples/web-demo. + ### Python ```bash @@ -86,10 +88,10 @@ print(output) # 4 ## Available operations -| czv (Rust) | czv-wasm (JS/TS) | czv-python | Summary | -| ---------------------------------------- | -------------------------------------- | ----------------------------------------------- | ------------------------- | -| [`count::RowCount`](czv/src/count.rs) | [`rowCount`](czv-wasm/src/count.rs) | [`count.row_count`](czv-python/src/count.rs) | Get the number of rows | -| [`count::ColumnCount`](czv/src/count.rs) | [`columnCount`](czv-wasm/src/count.rs) | [`count.column_count`](czv-python/src/count.rs) | Get the number of columns | +| czv (Rust) | czv-wasm (JS/TS) | czv-python | Summary | +| --------------------------------- | -------------------------------------- | ----------------------------------------- | ------------------------- | +| [`RowCount`](czv/src/count.rs) | [`rowCount`](czv-wasm/src/count.rs) | [`row_count`](czv-python/src/count.rs) | Get the number of rows | +| [`ColumnCount`](czv/src/count.rs) | [`columnCount`](czv-wasm/src/count.rs) | [`column_count`](czv-python/src/count.rs) | Get the number of columns | ## Development