ドキュメントを含むオフラインのhtmlファイルがあり、テキストファイルの内容を出力する必要があります(私の場合はソースコードです)。クライアント側の機能 (HTML 自体または JS) のみを使用して、このファイルのコンテンツを html ページに含める方法はありますか?
索引.html
<html>
<head>
<style>
p.source_code
{
font-family:"Courier New"
}
</style>
</head>
<body>
<p>
Some content
</p>
<p class="source_code">
<!-- place for output content of file main.cpp -->
</p>
</body>
</html>
main.cpp
#include <stdio.h>
int main()
{
printf("Hello World");
}
ブラウザで自分のページを次のように表示したい
Some content
#include <stdio.h>
int main()
{
printf("Hello World");
}