@@ -76,25 +76,25 @@ ecosystems who need fast, reliable content identification.
7676
7777## Installation
7878
79- ### Rust
79+ ### < img src = " https://cdn.simpleicons.org/rust/CE412B " width = " 20 " height = " 20 " alt = " Rust " > Rust
8080
8181``` bash
8282cargo add iscc-lib
8383```
8484
85- ### Python
85+ ### < img src = " https://cdn.simpleicons.org/python/3776AB " width = " 20 " height = " 20 " alt = " Python " > Python
8686
8787``` bash
8888pip install iscc-lib
8989```
9090
91- ### Node.js
91+ ### < img src = " https://cdn.simpleicons.org/nodedotjs/5FA04E " width = " 20 " height = " 20 " alt = " Node.js " > Node.js
9292
9393``` bash
9494npm install @iscc/lib
9595```
9696
97- ### Java
97+ ### < img src = " https://cdn.simpleicons.org/openjdk/ED8B00 " width = " 20 " height = " 20 " alt = " Java " > Java
9898
9999``` xml
100100<dependency >
@@ -106,39 +106,39 @@ npm install @iscc/lib
106106
107107The native library must be available on ` java.library.path ` at runtime.
108108
109- ### Go
109+ ### < img src = " https://cdn.simpleicons.org/go/00ADD8 " width = " 20 " height = " 20 " alt = " Go " > Go
110110
111111``` bash
112112go get github.com/iscc/iscc-lib/packages/go
113113```
114114
115- ### Ruby
115+ ### < img src = " https://cdn.simpleicons.org/ruby/CC342D " width = " 20 " height = " 20 " alt = " Ruby " > Ruby
116116
117117``` bash
118118gem install iscc-lib
119119```
120120
121- ### C# / .NET
121+ ### < img src = " https://cdn.simpleicons.org/dotnet/512BD4 " width = " 20 " height = " 20 " alt = " C# / .NET " > C# / .NET
122122
123123``` bash
124124dotnet add package Iscc.Lib
125125```
126126
127- ### C / C++
127+ ### < img src = " https://cdn.simpleicons.org/cplusplus/00599C " width = " 20 " height = " 20 " alt = " C / C++ " > C / C++
128128
129129Pre-built release tarballs are attached to each
130130[ GitHub Release] ( https://github.com/iscc/iscc-lib/releases ) . Download for your platform — includes
131131shared library, static library, ` iscc.h ` header, and ` iscc.hpp ` C++ wrapper.
132132
133- ### WASM
133+ ### < img src = " https://cdn.simpleicons.org/webassembly/654FF0 " width = " 20 " height = " 20 " alt = " WASM " > WASM
134134
135135``` bash
136136npm install @iscc/wasm
137137```
138138
139139## Quick Start
140140
141- ### Rust
141+ ### < img src = " https://cdn.simpleicons.org/rust/CE412B " width = " 20 " height = " 20 " alt = " Rust " > Rust
142142
143143``` rust
144144use iscc_lib :: gen_meta_code_v0;
@@ -147,7 +147,7 @@ let result = gen_meta_code_v0("ISCC Test Document!", None, None, 64).unwrap();
147147println! (" Meta-Code: {}" , result . iscc);
148148```
149149
150- ### Python
150+ ### < img src = " https://cdn.simpleicons.org/python/3776AB " width = " 20 " height = " 20 " alt = " Python " > Python
151151
152152``` python
153153import iscc_lib as ic
@@ -156,7 +156,7 @@ result = ic.gen_meta_code_v0("ISCC Test Document!")
156156print (f " Meta-Code: { result[' iscc' ]} " )
157157```
158158
159- ### Node.js
159+ ### < img src = " https://cdn.simpleicons.org/nodedotjs/5FA04E " width = " 20 " height = " 20 " alt = " Node.js " > Node.js
160160
161161``` javascript
162162const ic = require (" @iscc/lib" );
@@ -165,7 +165,7 @@ const result = ic.gen_meta_code_v0("ISCC Test Document!");
165165console .log (` Meta-Code: ${ result .iscc } ` );
166166```
167167
168- ### Java
168+ ### < img src = " https://cdn.simpleicons.org/openjdk/ED8B00 " width = " 20 " height = " 20 " alt = " Java " > Java
169169
170170``` java
171171import io.iscc.iscc_lib.IsccLib ;
@@ -174,7 +174,7 @@ String result = IsccLib.genMetaCodeV0("ISCC Test Document!", null, null, 64);
174174System . out. println(" Meta-Code: " + result);
175175```
176176
177- ### Go
177+ ### < img src = " https://cdn.simpleicons.org/go/00ADD8 " width = " 20 " height = " 20 " alt = " Go " > Go
178178
179179``` go
180180package main
@@ -195,7 +195,7 @@ func main() {
195195}
196196```
197197
198- ### Ruby
198+ ### < img src = " https://cdn.simpleicons.org/ruby/CC342D " width = " 20 " height = " 20 " alt = " Ruby " > Ruby
199199
200200``` ruby
201201require " iscc_lib"
@@ -204,7 +204,7 @@ result = IsccLib.gen_meta_code_v0("ISCC Test Document!")
204204puts " Meta-Code: #{ result.iscc } "
205205```
206206
207- ### C# / .NET
207+ ### < img src = " https://cdn.simpleicons.org/dotnet/512BD4 " width = " 20 " height = " 20 " alt = " C# / .NET " > C# / .NET
208208
209209``` csharp
210210using Iscc .Lib ;
@@ -213,7 +213,7 @@ var result = IsccLib.GenMetaCodeV0("ISCC Test Document!");
213213Console .WriteLine ($" Meta-Code: {result .Iscc }" );
214214```
215215
216- ### C++
216+ ### < img src = " https://cdn.simpleicons.org/cplusplus/00599C " width = " 20 " height = " 20 " alt = " C++ " > C++
217217
218218``` cpp
219219#include < iscc/iscc.hpp>
@@ -225,7 +225,7 @@ int main() {
225225}
226226```
227227
228- ### WASM
228+ ### < img src = " https://cdn.simpleicons.org/webassembly/654FF0 " width = " 20 " height = " 20 " alt = " WASM " > WASM
229229
230230``` javascript
231231import {
0 commit comments