This commit is contained in:
Swrup 2022-04-18 03:11:31 +02:00
parent d12efaeed8
commit 6963e068c8
20 changed files with 166 additions and 178 deletions

View file

@ -118,14 +118,6 @@ blockquote.blockquote {
visibility: hidden;
}
#alt-label {
display:none;
}
#alt {
display:none;
}
a.preview-link {
text-decoration: none;
color: unset;

View file

@ -1,26 +1,26 @@
(rule
(target js_catalog.js)
(target catalog.js)
(deps
(file ../../../js/js_catalog.bc.js))
(file ../../../js/catalog.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js/js_catalog.bc.js))))
(cat ../../../js/catalog.bc.js))))
(rule
(target js_babillard.js)
(target babillard.js)
(deps
(file ../../../js/js_babillard.bc.js))
(file ../../../js/babillard.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js/js_babillard.bc.js))))
(cat ../../../js/babillard.bc.js))))
(rule
(target js_thread.js)
(target thread.js)
(deps
(file ../../../js/js_thread.bc.js))
(file ../../../js/thread.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js/js_thread.bc.js))))
(cat ../../../js/thread.bc.js))))