| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <html lang="en-us">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <title>[[book_title]]</title>
- <style>
- p {
- text-indent: 2em;
- line-height: 1.7em;
- }
- a {
- text-decoration: none;
- }
- .paragraph {
- margin-bottom: 1em;
- }
- .row {
- display: flex;
- }
- @media screen and (max-width: 960px){
- .row {
- flex-direction: column;
- }
- }
- .col {
- flex: 5;
- }
- code {
- background-color: #ffe4c478;
- padding: 2px 6px;
- border-radius: 4px;
- }
- .origin {
- font-family: times;
- }
- .col p{
- display:inline;
- }
- </style>
- </head>
- <body>
- <h1>[[book_title]]</h1>
- <h2>目录</h2>
- <ul>
- [[#sections]]
- <li><a href="#[[filename]]">[[filename]]</a></li>
- [[/sections]]
- </ul>
|