diff --git a/docz/docs/03-demos/09-cloud/01-salesforce.md b/docz/docs/03-demos/09-cloud/01-salesforce.md index dcaec89..459d9bf 100644 --- a/docz/docs/03-demos/09-cloud/01-salesforce.md +++ b/docz/docs/03-demos/09-cloud/01-salesforce.md @@ -161,7 +161,7 @@ Custom Code > Static Resources should now list `sheetjs`: The script can be loaded from component code with: ```js -import XLSX from '@salesforce/resourceUrl/sheetjs'; +import sheetjs from '@salesforce/resourceUrl/sheetjs'; ``` The library includes a version number that can be displayed: @@ -379,4 +379,4 @@ The simple export has all of the data: [SheetJS Pro](https://sheetjs.com/pro) offers additional styling options like cell styling, automatic column width calculations, and frozen rows. -::: \ No newline at end of file +::: diff --git a/docz/docs/09-miscellany/05-contributing.md b/docz/docs/09-miscellany/05-contributing.md index 71790c9..cb1bb7d 100644 --- a/docz/docs/09-miscellany/05-contributing.md +++ b/docz/docs/09-miscellany/05-contributing.md @@ -158,7 +158,7 @@ sudo steamos-readonly disable 3) Configure keyring: ```bash -echo "keyserver hkps://keyserver.ubuntu.com" >> /etc/pacman.d/gnupg/gpg.conf +sudo sh -c 'echo "keyserver hkps://keyserver.ubuntu.com" >> /etc/pacman.d/gnupg/gpg.conf' sudo pacman-key --init sudo pacman-key --populate sudo pacman-key --refresh-keys @@ -167,7 +167,7 @@ sudo pacman-key --refresh-keys 4) Install dependencies: ```bash -yay -S base-devel mercurial subversion +sudo pacman -S base-devel mercurial subversion ``` @@ -227,7 +227,7 @@ This step may take a while as it will be downloading a number of test files. make test_misc # Full Build -cd modules; make; cd .. +cd modules; make clean; make; cd .. make dist ``` @@ -262,7 +262,7 @@ git checkout 51a861900092bfc01b2fa9960d4c932dcbeb6925 ```bash make clean -cd modules; make; cd .. +cd modules; make clean; make; cd .. make make dist ``` @@ -288,7 +288,7 @@ The two hashes should match. 8) To return to the HEAD commit, run ```bash -git checkout HEAD +git checkout master ``` ### Test in web browsers diff --git a/docz/docs/index.md b/docz/docs/index.md index b2e42ec..99054d2 100644 --- a/docz/docs/index.md +++ b/docz/docs/index.md @@ -65,7 +65,7 @@ document.getElementById("sheetjsexport").addEventListener('click', function() {
How to automate with NodeJS (click to show) -[The "Headless Automation" demo](/docs/demos/headless) includes complete examples +[The "Headless Automation" demo](/docs/demos/net/headless) includes complete examples using the `puppeteer` and `playwright` browser automation frameworks.