ユーザーがテキストを変更またはメモできるように、編集可能な div を使用する Web サイトがあります。ユーザーがこれを持っている場合、Webサイトにpdfまたは脚注付きの印刷可能なドキュメントを生成させる方法はありますか:
<div class="text" id="text_1">
<div class="bodyTest">This is the body text</div>
<div class="notes">These are the notes</div>
</div>
<div class="text" id="text_2">
<div class="bodyTest">This is the body text</div>
<div class="notes">These are the notes</div>
</div>
div.notes
Web サイトは、同じページに脚注として表示されるような方法で、印刷可能なバージョン (またはドキュメント) を生成しdiv#text_1
ますか? 完全な答えは必要ありません。一般的な方向への突き出しだけでも素晴らしいでしょう。ありがとう。