Penjelasan
<b:comment>
digunakan untuk menuliskan Tag komentar pada XML Blogger, secara default hasil render HTML tidak akan terlihat atau tidak ada.
Attribut
render
Attribut render
- Nilai :
true
ataufalse
- Keterangan :
- secara default
<b:comment>
mempunyai nilaifalse
- Jika true dipilih, maka render HTML akan menampilkan Tag komentar yang di buat.
- secara default
syntax
<b:comment> </b:comment>
<b:comment render='...'> </b:comment>
contoh <b:comment>
<b:comment>
<h2>Lorem Ipsum</h2>
</b:comment>
atau
<b:comment render='false'>
<h2>Lorem Ipsum</h2>
</b:comment>
Hasil render HTML
Tidak ada
<b:comment render='true'>
<h2>Lorem Ipsum</h2>
</b:comment>
Hasil render HTML
<!-- <h2>Lorem Ipsum</h2> -->