AsciiDocで常に表示されるConfidentialマークを埋め込む方法
AsciiDocでこんな感じのConfidential(とか社外秘とか)マークを埋め込む方法です.
:stylesheet:
アトリビュートで指定する外部cssを使う方がよいのですが,.adoc
ファイルだけで書く方法を書いてみます.
.adoc
ファイルの内容は以下のような感じです.
= this is sample doc
++++
<style>
body::before {
content: "Confidential";
position: fixed;
background-color: #f00;
padding: 0.5em;
color: #fff;
font-weight: 700;
right: 0%;
margin-top: 1em;
margin-right: 1em;
z-index: 999;
}
</style>
++++
== hello
* hello
* world
* 日本語
[NOTE]
====
this is note
====
++++
はPassthrough Blockで,変換されずそのままhtmlに出力されます.