طلب ميزة:
هل يمكن إضافة فئة docs إلى الوسم <body> في صفحة /docs؟
سيسمح هذا باستخدام CSS لتخصيص الرأس لصفحة المستندات فقط.
تم حله بطريقة قبيحة:
<script type="text/discourse-plugin" version="0.8">
api.onPageChange((url) => {
if(window.location.pathname == "/docs") {
document.querySelector("body").classList.add("docs");
}
else {
document.querySelector("body").classList.remove("docs");
}
})
</script>
تم وضعه هنا:
