From 0ca13baf05acb00997abdad31bc378331ff147c2 Mon Sep 17 00:00:00 2001 From: poni Date: Mon, 4 Oct 2021 13:02:50 +0200 Subject: [PATCH] readme ++ --- README.txt | 33 +++++++++++++++++++ layout/index.html | 5 ++- layout/{ => paged.js_files}/interface.css | 0 layout/{script => paged.js_files}/paged.js | 0 .../paged.polyfill.js | 0 index.html => speech/index.html | 0 index.js => speech/index.js | 0 style.css => speech/style.css | 0 8 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 README.txt rename layout/{ => paged.js_files}/interface.css (100%) rename layout/{script => paged.js_files}/paged.js (100%) rename layout/{script => paged.js_files}/paged.polyfill.js (100%) rename index.html => speech/index.html (100%) rename index.js => speech/index.js (100%) rename style.css => speech/style.css (100%) diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..79e1b36 --- /dev/null +++ b/README.txt @@ -0,0 +1,33 @@ +Helloooo + +This is a little file to explain what's going on in these folders. + +the folder 'layout' contains > + + the folder 'paged.js_files' > the library Paged.js + Paged.js is a free and open source JavaScript library that paginates + content in the browser to create PDF output from any HTML content.) + https://www.pagedjs.org/about/ + + the folder 'styles' > there are three different .css files that change + the layout. + + the 'index.html' > where you can visualize the rendering of the layout. + It works through a live server, that means that you have to simulate a + server in your computer: how? + you can use python, opening the terminal/cmd and digit > + python3 -m http.server + you can use Visual Studio Code with the extension "Live Server" + + +the folder 'speech' contains > + + the 'index.html' > in order to visualize which words are recognized by + the Speech-to-text + + the 'style.css' > where is written the layout of the html page + + the index.js > where is written the code to use the Speech-to-text app + + + diff --git a/layout/index.html b/layout/index.html index 6220d0a..7420d3f 100644 --- a/layout/index.html +++ b/layout/index.html @@ -1,9 +1,8 @@ - - - + + Booklet diff --git a/layout/interface.css b/layout/paged.js_files/interface.css similarity index 100% rename from layout/interface.css rename to layout/paged.js_files/interface.css diff --git a/layout/script/paged.js b/layout/paged.js_files/paged.js similarity index 100% rename from layout/script/paged.js rename to layout/paged.js_files/paged.js diff --git a/layout/script/paged.polyfill.js b/layout/paged.js_files/paged.polyfill.js similarity index 100% rename from layout/script/paged.polyfill.js rename to layout/paged.js_files/paged.polyfill.js diff --git a/index.html b/speech/index.html similarity index 100% rename from index.html rename to speech/index.html diff --git a/index.js b/speech/index.js similarity index 100% rename from index.js rename to speech/index.js diff --git a/style.css b/speech/style.css similarity index 100% rename from style.css rename to speech/style.css