Hi. I generated site by Publii. My problems are:
1. Search window doesn’t work. https://warroza.pl
2. I would like to put some code to the posts body content. I had it before on Blogger and it made for me some automation typography job inside the text. I tried put it to the custom CSS and HTML and it doesn’t work.
/* Posts
----------------------------------------------- */
var text = document.getElementById('post-body').innerHTML;
text = text.replace(/(\s)([\S])[\s]+/g,"$1$2 "); //jednoznakowe
text = text.replace(/(\s)([^<][\S]{1})[\s]+/g,"$1$2 "); //dwuznakowe
//tekst = tekst.replace(/(\s)([^<][\S]{2})[\s]+/g,"$1$2 "); //trzyznakowe
document.getElementById('post-body').innerHTML = tekst;
Anybody could help me maybe?