2

こんにちは、マルチマークダウン ファイルの先頭を次のようにしようとしています。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">
    <head><title>Test of markdown</title>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
        <link rel="stylesheet" type="text/css" href="../main.css" />
    </head>

次のメタタグを追加する方法を知っています。

Title: Test of markdown
CSS: ../main.css
Quotes language: english

これは私に与えます:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>Test of markdown</title>
        <link type="text/css" rel="stylesheet" href="../main.css"/>
    </head>

しかし、残りを追加する方法がわかりません。助けていただければ幸いです。ありがとう

4

1 に答える 1