From 16ed1bb557d89d989d3aa68ade382a70991faa7c Mon Sep 17 00:00:00 2001 From: clemtre Date: Sat, 13 Jan 2024 00:08:58 +0100 Subject: [PATCH] typo --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31bd0d7..8a78bb9 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ tags=$(echo "" | dmenu -p "Enter comma-separated tags:") ``` ## ~~htmlq~~ Htmlq is an HTML parser written in Go. It doesn't matter which parser we -uses, it seems that each language has its own. +use, it seems that each language has its own. We give to the program an html string and it filters through it using css selectors returning the found html elements Using javascript, retrieving all the \

children of a \
can @@ -81,7 +81,8 @@ be done with : ``` document.querySelectorAll('section h1') ``` -In shell, it's more complicated, htmlq is made for that: +In shell, it's more complicated since we don't have document object +model we can query. Htmlq is made for that: ``` cat fichier.html | htmlq 'section h1' ``` @@ -146,4 +147,5 @@ Junicode (OFL-1.1) https://psb1558.github.io/Junicode-font/ Dmenu License (MIT/X) https://tools.suckless.org/dmenu/ +jquery