1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| --- name: {{metaData.title}} title: {{metaData.title}} cover: '{{metaData.cover}}' tags: - weread - 微信读书 author: {{metaData.author}} isbn: {{metaData.isbn}} rating: banner: "![[true.jpg]]" publish: {{metaData.publisher}} publishyear: "{{metaData.publishTime|truncate(11,False,'')}}" category: {{metaData.category}} noteCount: {{metaData.noteCount}} reviewCount: {{metaData.reviewCount}} grade: status: {{metaData.finish}} readtime: pagecount: pageprogress: ---
> 作者:{{metaData.author}}
<!--more-->
> [!abstract]- **内容简介** > > 《{{metaData.title}}》 > {{metaData.intro|striptags(true)|trim}}
## {{metaData.title}}
> [!bookinfo]+ **《{{metaData.title}}》** > ![bookcover|200]({{metaData.cover}}) > > | 属性 | 内容 | > | - | ---- | > | ISBN | {{metaData.isbn if metaData.isbn else 'null'}} | > | 作者 | {{metaData.author}} | > | 出版年 | {{metaData.publishTime|truncate(11,False,'')}} | > | 出版社 | {{metaData.publisher}} | > | 来源 | [{{metaData.title}}](https://weread.qq.com/web/) | > | 分类 | {{metaData.category}} |
## 高亮划线 {% for chapter in chapterHighlights -%} ### {{chapter.chapterTitle}} {% for highlight in chapter.highlights -%}{% if highlight.reviewContent -%} > [!quote] {{chapter.chapterTitle}} > {{ highlight.markText |trim }} > > <p align="right"><sub>— 创建于 [[{{highlight.createTime.slice(0, 10)}}]]{{highlight.createTime.slice(10, 16)}} ^{{highlight.chapterUid}}-{{highlight.range}}</sub></p> - {{highlight.reviewContent}} {% else %} > [!quote] {{chapter.chapterTitle}} > {{ highlight.markText |trim }} > > <p align="right"><sub>— 创建于 [[{{highlight.createTime.slice(0, 10)}}]]{{highlight.createTime.slice(10, 16)}} ^{{highlight.chapterUid}}-{{highlight.range}}</sub></p> {% endif %} {%- endfor %}{%- endfor %} {% for chapter in bookReview.chapterReviews -%} {% if chapter.reviews or chapter.chapterReview -%} {%for review in chapter.reviews -%} > [!quote] {{chapter.chapterTitle}} > {{review.abstract |trim }} > - {{review.content}} > <p align="right"><sub>— 创建于 [[{{highlight.createTime.slice(0, 10)}}]]{{highlight.createTime.slice(10, 16)}} ^{{highlight.chapterUid}}-{{highlight.range}}</sub></p> > {%- endfor %} {% if chapter.chapterReview -%} ### 读书笔记 > [!quote] {{chapter.chapterTitle}} > {{chapter.chapterReview.content}}{%-endif %} {% if chapter.reviews %}{%for review in chapter.reviews -%} {%- endfor %} {%-endif %} {%- endif %} {%- endfor %} {% if bookReview.bookReview -%} ### 本书评论 {{bookReview.bookReview.mdContent}} ^{{bookReview.bookReview.reviewId}} {%- endif %}
|