├── README.md ├── content ├── api_v2.md ├── apis-launch.md ├── note_rss.md └── note_rss_demo.md └── raml ├── intro.md └── samples ├── table.raml ├── wx_markup_and_li.raml ├── wx_text_and_image.raml └── wx_video_and_link.raml /README.md: -------------------------------------------------------------------------------- 1 | # 轻芒 APIs 2 | 轻芒为开发者合作伙伴提供各种内容和功能的 APIs/SDKs,欢迎了解并参与内测。 3 | 4 | ## 内容服务 5 | 轻芒为合作伙伴提供内容服务,轻芒 APIs 除了可以按不同维度搜索或获取文章内容, 还能提供网页内容的转码服务。 6 | 7 | 使用方式,请阅读 API 文档:[轻芒内容 APIs 2.0 »](./content/api_v2.md) 8 | 9 | ## 通知识别服务 10 | 请直接联系 hello@qingmang.me。 11 | 12 | ## 参与内测 13 | 如有问题,可以直接开 issues 交流。 14 | 目前,轻芒 APIs 还处于内测阶段,暂不支持自助注册,如有需求,请联系 hello@qingmang.me 。 15 | -------------------------------------------------------------------------------- /content/api_v2.md: -------------------------------------------------------------------------------- 1 | # 轻芒内容 APIs V2 2 | 3 | 4 | 5 | - [APIs 设计](#apis-设计) 6 | - [返回数据](#返回数据) 7 | - [错误处理](#错误处理) 8 | - [测试方式](#测试方式) 9 | - [应用(App)](#应用(app)) 10 | - [app.auth](#appauth) 11 | - [app.get](#appget) 12 | - [分类(Category)](#分类(category)) 13 | - [category.list](#categorylist) 14 | - [category.get](#categoryget) 15 | - [文章(Article)](#文章(article)) 16 | - [article.list](#articlelist) 17 | - [article.dump](#articledump) 18 | - [article.search](#articlesearch) 19 | - [article.get](#articleget) 20 | - [article.fetch(通用转码服务)](#articlefetch通用转码服务) 21 | - [转码格式说明( RAML 说明)](#转码格式说明-raml-说明) 22 | 23 | 24 | 25 | ## APIs 设计 26 | 轻芒 APIs 在域名 `https://api.qingmang.me/v2/` 下,它遵循如下的一些设计理念: 27 | * APIs 的接口命名遵循 `RPC 风格`,形如 `域名/主体.操作`,主体和操作都使用小写开头的驼峰命名法,比如:获取文章内容的主体是 `article`,操作是 `get`,它的完整 API 是 `https://api.qingmang.me/v2/article.get`; 28 | * APIs 支持 `Get` 或 `Post` 请求,所需的信息都放在参数中(或者是 Form 中),参数名均为小写加下划线; 29 | * APIs 始终会返回 `Http Code 200`(除非服务挂了),以及对应的 Json Object,其中包含了所需的数据或者错误信息; 30 | 31 | ### 返回数据 32 | APIs 都会返回一个 Json Object,它的 Code Style 沿用自 `Google Json Style Guide` ([中文](https://github.com/darcyliu/google-styleguide/blob/master/JSONStyleGuide.md) | [原版](https://google.github.io/styleguide/jsoncstyleguide.xml))。 33 | 34 | 重点部分如下: 35 | * 属性的定义采取驼峰结构,形如 `theSpecialProperty`,一般是小写字母开头; 36 | * 保持 Json 结构相对扁平,除非是非常明确的数据结构; 37 | * 如果属性值是列表,采取 `复数` 形态来命名属性名,比如 `thumbnails`,而如果需要表示一个计数,最好是 count 结尾,形如 `itemCount`; 38 | * 如果一个属性是枚举类别,最好使用字符串来描述,而不要转义成一个 int; 39 | * 如果为 null,除非有特别涵义,否则不返回; 40 | * 如果用字符串来表示时间、间隔、经纬度等等,需要遵循对应的 RFC 或 ISO 规范; 41 | 42 | 返回的 Json Object 中,为了规范相近语意的内容在不同 Json 中保持定义统一,规定了一系列的保留字,这些保留字我们不遵循 Google 的定义,而是采取自己的规范,示例如下: 43 | ```json 44 | { 45 | "ok": true, 46 | "error": { 47 | "type": "invalid_token", 48 | "desc": "用户 token 已经失效,可能是超时或者登出" 49 | }, 50 | "nextUrl": "http://url_to_next_page/if_has_more", 51 | "hasMore": true 52 | } 53 | ``` 54 | 55 | 其中: 56 | * `ok` 表示请求是否成功,`true` 为成功,`false` 为请求错误; 57 | * `error` 表示具体的错误信息,仅当 ok 为 false 的时候生效,它包括错误类型 `type` 和错误的具体描述 `desc`,可以帮助了解错误的具体原因; 58 | * `hasMore` 表示是否还有下一页,当返回结果是列表的时候生效,`true` 为还有下一页,`false` 表示没有下一页了; 59 | * `nextUrl` 表示下一页的 url 地址,当 hasMore 为 true 的时候生效; 60 | 61 | 此外,如果请求成功,还会包括具体的返回数据,其定义可以参见具体 APIs 的介绍。 62 | 63 | ### 错误处理 64 | 当请求失败,返回 Json 中会包含 `error` 错误信息,其中 `type` 的定义可以参见下表: 65 | 66 | | 错误类型 | 含义和处理方式 | 67 | |:--------|:-------------| 68 | | invalid_token | 错误的 token 信息,无法通过校验,可能需要重新进行授权 | 69 | | miss_parameter | 缺少必要的参数信息 | 70 | | no_permission | 缺少足够的权限来完成对应的操作 | 71 | | unknown_error | 其它的位置错误,描述中会包含具体的信息 | 72 | 73 | ### 测试方式 74 | 目前,轻芒 APIs 还处于内测阶段,暂不支持自主注册,如有需求,请联系 hello@qingmang.me 获取 appId 和 token,该 token 可以直接使用,测试账号不提供 Secret Key。 75 | 76 | ## 应用(App) 77 | 每个合作伙伴,在轻芒都是定义成一个应用(App),轻芒会为每个通过审核的 App 分配对应的访问权限和可使用的 Quota。 78 | 79 | 一个 App 会通过如下的 Json Object 进行表示: 80 | ```json 81 | { 82 | "appId": "assigned_app_id", 83 | "name": "合作伙伴的名字", 84 | "status": "active" 85 | } 86 | ``` 87 | 88 | 其中: 89 | * `appId` 表示对应的 App ID,审核通过后会自动分配,而 `name` 则为提交的 APP NAME; 90 | * `status` 表示应用的审核状态,`active` 表示审核通过,`inactive` 表示暂不可用; 91 | 92 | ### app.auth 93 | 授权接口,在访问任何其他接口前,合作伙伴都需要通过该接口来获得 `token`,拿到 `token` 后需要自行持久化便于后续访问其它 APIs 时鉴权使用。 94 | 95 | App 审核通过后,会分配一个 `App ID` 和一个 `Secret Key`,其中: 96 | * `App ID` 用来标示应用,为了控制服务端压力,每个 App 会控制一定的访问频次,App ID 一旦分配就不会再变更; 97 | * `Secret Key` 用来计算签名,Secret Key 是可以更新的,一旦更新,基于原来的 Key 计算的 Token 就会全部立刻失效,以此,来防止 Key 被盗用导致的问题; 98 | 99 | *该 APIs 仅可在服务端调用,避免泄漏 Secret Key* 100 | 101 | #### 参数 102 | 103 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 104 | |:--|:--|:--|:--|:--| 105 | | appid | string | 是 | qingmang | 分配给第三方的 App ID | 106 | | sign | string | 是 | a12ce7f | 根据算法,基于 Secret Key 计算而来的签名信息 | 107 | | ts | long | 是 | 1491038197 | 当前的时间戳 | 108 | 109 | 其中,`sign` 的具体算法是: 110 | ``` 111 | sign = hmac_sha1(Secret Key, App ID + ':' + Timestamp) 112 | ``` 113 | 114 | 一段用来签名的 `Python` 代码如下: 115 | ```python 116 | #!/usr/bin/env python 117 | 118 | import sys 119 | from hashlib import sha1 120 | import hmac 121 | 122 | if __name__ == "__main__": 123 | key = sys.argv[1] 124 | appid = sys.argv[2] 125 | ts = sys.argv[3] 126 | msg = "%s:%s" % (appid, ts) 127 | sign = hmac.new(key, msg, sha1).digest() 128 | print sign.encode("hex") 129 | ``` 130 | 131 | 可以传入签名和时间戳来计算 `sign`: 132 | ``` 133 | python hmac-sha1.py secret-key app-id 1491038197 134 | 5fc145cab4285f0a29d3c35533d32db1a957b125 135 | ``` 136 | 137 | #### 返回 138 | ```json 139 | { 140 | "ok": true, 141 | "app": { 142 | "appId": "qingmang", 143 | "name": "轻芒杂志", 144 | "icon": "http://static.wdjimg.com/rippleweb/images/logo.7b1996ef.png", 145 | "desc": "全新的、全面美好的兴趣杂志", 146 | 147 | "status": "active" 148 | }, 149 | "token": "abc1234sxba" 150 | } 151 | ``` 152 | 153 | 请求成功后,不仅会返回 `app` 的信息,更包括了 `token` 信息,保存它,可以用来后续 APIs 的校验。 154 | 155 | ### app.get 156 | 获得 App 信息的接口,也可以用做校验 `token` 是否有效。 157 | 158 | #### 参数 159 | 160 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 161 | |:--|:--|:--|:--|:--| 162 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 163 | 164 | #### 返回 165 | ```json 166 | { 167 | "ok": true, 168 | "app": { 169 | "appId": "qingmang", 170 | "name": "轻芒杂志", 171 | "status": "active" 172 | } 173 | } 174 | ``` 175 | 176 | 请求成功后,会返回 `app` 的信息。 177 | 178 | ## 分类(Category) 179 | 轻芒可以通过不同纬度的分类(Category)来提供文章内容,常见的维度包括: 180 | * `兴趣`。轻芒将内容分成数百个不同的兴趣,比如:`家居`,`科技`,`咖啡`,`旅行`,等等,可以通过不同兴趣来获取对应的文章; 181 | * `应用`。轻芒收录了上千个应用和公众号,比如:`少数派`,`好奇心日报`,`清单`,等等,可以通过不同应用来获取对应的文章; 182 | * `类别`。轻芒也支持通过不同的内容类比来获取相应的文章,比如:`文字`,`图片`,`视频`,等等; 183 | 184 | 此外,如果有其它定制化的需求,比如,需要某个兴趣下面的视频内容,或者是特定几个应用的内容,轻芒也可以特殊定制来实现。 185 | 186 | 一个分类的信息,会通过如下的 Json Object 来表示: 187 | ```json 188 | { 189 | "categoryId": "assigned_category_id", 190 | "type": "interest", 191 | "name": "分类名", 192 | "icon": "http://a_icon_for_partener", 193 | "description": "分类的描述", 194 | 195 | "subCategories": [{ 196 | "categoryId": "p50", 197 | "name": "子分类的名称", 198 | "articleNumber": 2048 199 | }] 200 | } 201 | ``` 202 | 203 | 其中: 204 | * `categoryId` 是该分类的 id,`type` 是该分类的类型,包括:`interest`,`app`,`content`,等。此外,还包含 `name`,`icon`,等基本信息(可能空); 205 | * 在部分分类下,还可能包含更具体的 `subCategories`,说明这个分类下面还有子分类,可以用子分类来获取它对应的 Timeline 信息,比如,一个应用就可能包含多个不同频道的内容; 206 | 207 | ### category.list 208 | 获得提供给该合作伙伴的全部分类列表。 209 | 210 | #### 参数 211 | 212 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 213 | |:--|:--|:--|:--|:--| 214 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 215 | | need_stat | boolean | 否,默认为 false | false | 是否需要子分类的文章数 | 216 | #### 返回 217 | ```json 218 | { 219 | "ok": true, 220 | "categories": [{ 221 | "categoryId": "assigned_category_id", 222 | "type": "interest", 223 | "name": "分类名", 224 | "icon": "http://a_icon_for_partener", 225 | "description": "分类的描述", 226 | }], 227 | "hasMore": false 228 | } 229 | ``` 230 | 231 | 请求成功后,会返回 `categories` 的列表。 232 | 233 | ### category.get 234 | 获得具体 Category 的详细信息。 235 | 236 | #### 参数 237 | 238 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 239 | |:--|:--|:--|:--|:--| 240 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 241 | | category_id | string | 是 | i1234 | 已知的特定分类的 ID 信息 | 242 | 243 | #### 返回 244 | ```json 245 | { 246 | "ok": true, 247 | "category": { 248 | "categoryId": "assigned_category_id", 249 | "type": "interest", 250 | "name": "分类名", 251 | "icon": "http://a_icon_for_partener", 252 | "description": "分类的描述", 253 | }, 254 | "hasMore": false 255 | } 256 | ``` 257 | 258 | 请求成功后,会返回对应的 `category`。 259 | 260 | ## 文章(Article) 261 | 文章(Article)指的是一个页面的正文内容,轻芒提供 APIs,将源站中提取出结构化的信息。 262 | 263 | 一个文章,会用如下的 Json Object 来表示: 264 | ```json 265 | { 266 | "articleId": -8379746561699078860, 267 | 268 | "title": "三星Galaxy S8/S8+上手体验", 269 | "snippet": "转眼又到2017年的春季,S系列终于有机会上头条,Galaxy S8有没有一雪前耻,更进一步呢?这是我们将要探究的内容。", 270 | "author": "科技美学", 271 | "publishTimestamp": 1490803200000, 272 | "crawlerTimestamp": 1490893250880, 273 | "covers": [{ 274 | "url": "http://qiniuimg.qingmang.mobi/image/orion/d534586e7e0f28f2deb1bcda253f9e1a_1920_1080.jpeg", 275 | "height": 1080, 276 | "width": 1920 277 | }], 278 | "images": [{ 279 | "url": "http://link_to_image", 280 | "width": 1024, 281 | "height": 2048 282 | }], 283 | "videos": [{ 284 | "url": "http://api.qingmang.me/v1/video.redirect?url=https://v.qq.com/iframe/preview.html?vid%3Di0388m50vls%26width%3D500%26height%3D375%26auto%3D0", 285 | "duration": 501.12, 286 | "width": 1920, 287 | "height": 1072 288 | }], 289 | "musics": [{ 290 | "url": "http://res.wx.qq.com/voice/getvoice?mediaid=MjM5ODQwNDQxNF8yNjUwNjk2MTIx", 291 | "name": "2017.03.30" 292 | }], 293 |  "tags": ["三星"], 294 | "templateType": "text", 295 | "categories": [{ 296 | "categoryId": "p50", 297 | "title": "科技" 298 | }], 299 | "contentUrl": "http://qingmang.me/articles/-8379746561699078860", 300 | 301 | "webUrl": "文章的原文链接", 302 | "appUrl": "文章在应用中打开的链接", 303 | "providerName": "科技", 304 | "providerIcon": "http://img.wdjimg.com/image/orion/e7b233d4c4d93c9c5411429d1b66a7cd_292_292.jpeg", 305 | "providerPackageName": "org.wandoujia.mp.kejimx", 306 | 307 | "contentFormat": "raml", 308 | "content": "正文内容", 309 | "keywords": [{ 310 | "word": "s8", 311 | "score": 100 312 | }] 313 | } 314 | ``` 315 | 316 | 其中,可以分成三部分的内容: 317 | * `轻芒抽取出来的结构化内容`。根据源站本身的内容,和轻芒对内容的理解,将结构化的信息提取出来,包括了文章的唯一标示,标题,描述,作者,发布时间,头图,文章中包含的图片、视频,关联的频道、Tag、兴趣,等等; 318 | * `原文的基本信息`。原文本身的一些信息,包括原文链接 `webUrl`,源站的名字、包名,等等; 319 | * `轻芒抽取的正文内容`。轻芒除了会抽取文章的基本信息,还会抽取其正文信息进行计算和排版,包括了正文的内容 `content` 和对应的排版格式 `contentFormat`,以及从正文抽取出来的关键字 `keywords` 信息。由于这部分内容大小比较大,大部分接口中不提供,仅可通过 `article.get` 接口来获取; 320 | 321 | 其中,`templateType` 是轻芒推算的文章适合的展示样式,包括: 322 | 323 | | 版式样式 | 含义 | 324 | |:--------|:--- | 325 | | text | 一般的长文,默认样式 | 326 | | short_text | 短文本 | 327 | | video | 视频 | 328 | | image | 单图 | 329 | | gallery | 多图 | 330 | 331 | ### article.list 332 | 获得给定分类下的文章列表。 333 | 334 | #### 参数 335 | 336 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 337 | |:--|:--|:--|:--|:--| 338 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 339 | | category_id | string | 是 | i1567 | 从 `category.list` 中获取的 `categoryId` 信息,或者 `subCategories` 中的 ID 信息 | 340 | 341 | #### 返回 342 | ```json 343 | { 344 | "ok": true, 345 | "articles": [{ 346 | "title": "三星Galaxy S8/S8+上手体验", 347 | "snippet": "转眼又到2017年的春季,S系列终于有机会上头条,Galaxy S8有没有一雪前耻,更进一步呢?这是我们将要探究的内容。", 348 | "author": "科技美学", 349 | "publishTimestamp": 1490803200000, 350 | "crawlerTimestamp": 1490893250880, 351 | "covers": [{ 352 | "url": "http://qiniuimg.qingmang.mobi/image/orion/d534586e7e0f28f2deb1bcda253f9e1a_1920_1080.jpeg", 353 | "height": 1080, 354 | "width": 1920 355 | }], 356 | "images": [{ 357 | "url": "http://link_to_image", 358 | "width": 1024, 359 | "height": 2048 360 | }], 361 | "videos": [{ 362 | "url": "http://api.qingmang.me/v1/video.redirect?url=https://v.qq.com/iframe/preview.html?vid%3Di0388m50vls%26width%3D500%26height%3D375%26auto%3D0", 363 | "duration": 501.12, 364 | "width": 1920, 365 | "height": 1072 366 | }], 367 | "musics": [{ 368 | "url": "http://res.wx.qq.com/voice/getvoice?mediaid=MjM5ODQwNDQxNF8yNjUwNjk2MTIx", 369 | "name": "2017.03.30" 370 | }], 371 | "tags": ["美食"], 372 | "templateType": "text", 373 | "categories": [{ 374 | "categoryId": "p50", 375 | "title": "科技美学" 376 | }], 377 | "contentUrl": "http://qingmang.me/articles/-8379746561699078860", 378 | 379 | "webUrl": "文章的原文链接", 380 | "appUrl": "文章在应用中打开的链接", 381 | "providerName": "科技美学", 382 | "providerIcon": "http://img.wdjimg.com/image/orion/e7b233d4c4d93c9c5411429d1b66a7cd_292_292.jpeg", 383 | "providerPackageName": "org.wandoujia.mp.kejimx", 384 | }], 385 | "hasMore": false 386 | } 387 | ``` 388 | 389 | 返回的 `articles` 中,包含除了正文相关信息的其它数据。 390 | 391 | ### article.dump 392 | 和 `article.list` 类似,也是获得给定分类下的文章列表。但所不同的是,只要返回过 的文章,就不再会重新再提供了,进入分类的文章仅仅会被取走一次。 393 | 394 | *该接口需要在服务端调用,避免多次调用导致返回内容丢失* 395 | 396 | #### 参数 397 | 398 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 399 | |:--|:--|:--|:--|:--| 400 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 401 | | category_id | string | 是 | i1567 | 从 `category.list` 中获取的 `categoryId` 信息 | 402 | | reset | boolean | 否,默认为 false | true | 是否重置全部已读文章,如果需要从头再取,则需要将该参数设置为 true | 403 | | test | boolean | 否,默认为 false | true | 是否是测试环境使用,如果是测试环境,已读文章记录将与生产环境隔离 | 404 | 405 | #### 返回 406 | ```json 407 | { 408 | "ok": true, 409 | "articles": [{ 410 | "title": "三星Galaxy S8/S8+上手体验", 411 | "snippet": "转眼又到2017年的春季,S系列终于有机会上头条,Galaxy S8有没有一雪前耻,更进一步呢?这是我们将要探究的内容。", 412 | "author": "科技美学", 413 | "publishTimestamp": 1490803200000, 414 | "crawlerTimestamp": 1490893250880, 415 | "covers": [{ 416 | "url": "http://qiniuimg.qingmang.mobi/image/orion/d534586e7e0f28f2deb1bcda253f9e1a_1920_1080.jpeg", 417 | "height": 1080, 418 | "width": 1920 419 | }], 420 | "images": [{ 421 | "url": "http://link_to_image", 422 | "width": 1024, 423 | "height": 2048 424 | }], 425 | "videos": [{ 426 | "url": "http://api.qingmang.me/v1/video.redirect?url=https://v.qq.com/iframe/preview.html?vid%3Di0388m50vls%26width%3D500%26height%3D375%26auto%3D0", 427 | "duration": 501.12, 428 | "width": 1920, 429 | "height": 1072 430 | }], 431 | "musics": [{ 432 | "url": "http://res.wx.qq.com/voice/getvoice?mediaid=MjM5ODQwNDQxNF8yNjUwNjk2MTIx", 433 | "name": "2017.03.30" 434 | }], 435 | "tags": ["美食"], 436 | "templateType": "text", 437 | "categories": [{ 438 | "categoryId": "p50", 439 | "title": "科技美学" 440 | }], 441 | "contentUrl": "http://qingmang.me/articles/-8379746561699078860", 442 | 443 | "webUrl": "文章的原文链接", 444 | "appUrl": "文章在应用中打开的链接", 445 | "providerName": "科技美学", 446 | "providerIcon": "http://img.wdjimg.com/image/orion/e7b233d4c4d93c9c5411429d1b66a7cd_292_292.jpeg", 447 | "providerPackageName": "org.wandoujia.mp.kejimx", 448 | }], 449 | "hasMore": false 450 | } 451 | ``` 452 | 453 | 同上,返回的 `articles` 中,包含除了正文相关信息的其它数据。 454 | 455 | ### article.search 456 | 通过关键字,在指定 app 内搜索相关的文章。 457 | 458 | #### 参数 459 | 460 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 461 | |:--|:--|:--|:--|:--| 462 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 463 | | query | string | 是 | Google | 搜索的关键词 | 464 | | category_id | string | 是 | acom.qdaily.ui | 只支持 category 类型为 app(即以字母 a 开头的 category_id)的文章搜索 | 465 | | sort | string | 否,默认为相关度(relevance) | time | 搜索结果返回的方式,支持 `relevance` 按照相关度从高到低返回,`time` 按照时间从新到旧返回 | 466 | 467 | #### 返回 468 | ```json 469 | { 470 | "ok": true, 471 | "articles": [{ 472 | "articleId": 251, 473 | 474 | "title": "这是文章的标题", 475 | "desc": "这是文章的描述信息", 476 | "snippet": "这是文章的摘要信息", 477 | "author": "文章的作者", 478 | "publishTimestamp": 140000000000, 479 | "crawlerTimestamp": 140000000000 480 | }], 481 | "hasMore": false 482 | } 483 | ``` 484 | 485 | 同上,返回的 `articles` 中,包含除了正文相关信息的其它数据。 486 | 487 | ### article.get 488 | 获得给定的文章,包含文章正文。 489 | 490 | #### 参数 491 | 492 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 493 | |:--|:--|:--|:--|:--| 494 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 495 | | id | string | 是 | 12345 | 文章的 id,即 article 中的 `articleId` | 496 | | format | string | 否,默认为 html(html) | raml | 文章正文的格式,支持 `html`, [raml](https://github.com/qingmang-team/docs/blob/db3eddc95da2594ea71c5866d220d36c23eddceb/raml/intro.md)| 497 | | need_keywords | boolean | 否,默认为 false | true | 是否需要计算正文的关键字,默认为 false | 498 | 499 | #### 返回 500 | ```json 501 | { 502 | "ok": true, 503 | "article": { 504 | "articleId": -8379746561699078860, 505 | 506 | "title": "三星Galaxy S8/S8+上手体验", 507 | "snippet": "转眼又到2017年的春季,S系列终于有机会上头条,Galaxy S8有没有一雪前耻,更进一步呢?这是我们将要探究的内容。", 508 | "author": "科技美学", 509 | "publishTimestamp": 1490803200000, 510 | "crawlerTimestamp": 1490893250880, 511 | "covers": [{ 512 | "url": "http://qiniuimg.qingmang.mobi/image/orion/d534586e7e0f28f2deb1bcda253f9e1a_1920_1080.jpeg", 513 | "height": 1080, 514 | "width": 1920 515 | }], 516 | "images": [{ 517 | "url": "http://link_to_image", 518 | "width": 1024, 519 | "height": 2048 520 | }], 521 | "videos": [{ 522 | "url": "http://api.qingmang.me/v1/video.redirect?url=https://v.qq.com/iframe/preview.html?vid%3Di0388m50vls%26width%3D500%26height%3D375%26auto%3D0", 523 | "duration": 501.12, 524 | "width": 1920, 525 | "height": 1072 526 | }], 527 | "musics": [{ 528 | "url": "http://res.wx.qq.com/voice/getvoice?mediaid=MjM5ODQwNDQxNF8yNjUwNjk2MTIx", 529 | "name": "2017.03.30" 530 | }], 531 | "tags": ["美食"], 532 | "templateType": "text", 533 | "categories": [{ 534 | "categoryId": "p50", 535 | "title": "科技美学" 536 | }], 537 | "contentUrl": "http://qingmang.me/articles/-8379746561699078860", 538 | 539 | "webUrl": "文章的原文链接", 540 | "appUrl": "文章在应用中打开的链接", 541 | "providerName": "科技美学", 542 | "providerIcon": "http://img.wdjimg.com/image/orion/e7b233d4c4d93c9c5411429d1b66a7cd_292_292.jpeg", 543 | "providerPackageName": "org.wandoujia.mp.kejimx", 544 | 545 | "contentFormat": "raml", 546 | "content": "正文内容", 547 | "keywords": [{ 548 | "word": "s8", 549 | "score": 100 550 | }] 551 | } 552 | } 553 | ``` 554 | 555 | 请求成功后,会返回包含正文信息的 `article`。 556 | 557 | 558 | ### article.fetch(通用转码服务) 559 | 通用转码服务,获取任意 url 的正文以及 title 等信息。 560 | 561 | #### 参数 562 | 563 | | 参数 | 类型 | 是否必须 | 示例 | 其它说明 | 564 | |:--|:--|:--|:--|:--| 565 | | token | string | 是 | abc1234sxba | 从 `app.auth` 中获得的 token 信息 | 566 | | url | string | 是 | http://www.pingwest.com/market/ubdc2017-youmeng/?type=1 | 文章的 url | 567 | | format | string | 否,默认为 html | raml | 文章正文的格式,支持 `html`, `raml` | 568 | | js | int | 否,默认为 0 | 0 | 文章正文是否需要 javascript 动态加载| 569 | 570 | 571 | 请求示例: 572 | 573 | curl "https://api.qingmang.me/v2/article.fetch?token=abc1234sxba&format=raml&js=0&url=http://www.pingwest.com/market/ubdc2017-youmeng" 574 | 575 | #### 返回 576 | ```json 577 | { 578 | "ok": true, 579 | "article": { 580 | "articleId": "8761595884994052465", 581 | "title": "2017UBDC:数据的狂欢,全景解读“DI的力量” | PingWest品玩", 582 | "subtitle":"2017UBDC:数据的狂欢,全景解读“DI的力量” | PingWest品玩", 583 | "snippet": "今天,2017UBDC全域大数据峰会在北京圆满举行。大会由【友盟+】主办,以“DI的力量”为主题,全景展现大数", 584 | "contentFormat": "raml", 585 | "content": "正文内容", 586 | "images": [{ 587 | "url": "http://link_to_image", 588 | "width": 1024, 589 | "height": 2048 590 | }] 591 | } 592 | } 593 | 594 | ``` 595 | 596 | 获得给定url的文章,包含文章正文。 597 | 598 | ### 转码格式说明( RAML 说明) 599 | 大部分网络上的内容,都是以 HTML 格式的 Web 页面进行提供的。但 HTML 具有一定的局限性,在很多场合并不适合,包括: 600 | * 需要极高性能 601 | * 需要调整排版样式 602 | * 需要剥离无关的信息 603 | 604 | 轻芒 APIs 提供将 HTML 格式的 Web 页面和 App 内页面抽取正文的服务,并将正文内容按照自定义的结构化格式(即:RAML )提供。 605 | 606 | 格式详细说明,请阅读文档:[RAML(Ripple Article Markup Language)»](https://github.com/qingmang-team/docs/blob/master/raml/intro.md) 607 | -------------------------------------------------------------------------------- /content/apis-launch.md: -------------------------------------------------------------------------------- 1 | # 给大家介绍一下「轻芒 APIs」 2 | ### By 王俊煜 3 | 4 | 5 | 轻芒搞了一款新产品。作为代言人,我得给大家介绍一下。 6 | 7 | \- 8 | 9 | 轻芒是一家内容技术公司,前身是豌豆荚的应用内搜索,有 4 年多的历史。轻芒做了许多基础的工作,也拥有多项相关专利。我们想着,这些东西光自己用还是挺浪费的,还是得让更多的人用上。 10 | 11 | 所以这就有了 API。通过 API,轻芒之外的其它开发者,不管是个人还是公司,都可以直接把我们的技术用到自己的产品中。 12 | 13 | 轻芒的 API 能做什么呢?内容索引、聚类和转码。 14 | - 索引。轻芒的搜索引擎能全面索引来源于网站、各大社交平台、公众号和应用内的内容。目前,已索引内容来源有 2000 多个,亦可应需要继续增加。 15 | - 聚类。轻芒的搜索引擎会自动把内容整理归类到几百个细分兴趣,完成对内容的理解和解析。 16 | - 转码。将原始的不规范内容输出为带有语义化标签的内容,方便进行二次处理。 17 | 通过 API,我们积累的这些技术解决方案,也就从公司内部的资源,直接变成了对外的产品。 18 | 19 | \- 20 | 21 | 那我们为什么要做这么一个产品呢? 22 | 23 | 说实话,我也不是很清楚。 24 | 25 | 不过,我们始终觉得,轻芒做的这些挖掘应用里的内容和能力的工作,是有很广泛的用途的,必将大放异彩。 26 | 27 | 只是我们自己视野有限,现在精力也有限,放不出那么多异彩。开放 API,可以让大家一起来放。 28 | 29 | 我们已经在内测的项目,已经使用轻芒 APIs 做了这些事情: 30 | - 比如,乐视手机,使用轻芒 APIs,在手机桌面上加入了资讯内容 31 | - 比如,联想,使用轻芒 APIs,在手机浏览器首页增加了短视频内容。 32 | - 比如,新世相,使用轻芒 APIs,在红楼梦 App 中嵌入了定制的「红楼梦」杂志。 33 | - … 34 | 35 | 还有一些内测项目没有上线,但也超出设计 API 时我们的想象力: 36 | - 比如,某电视操作系统,使用轻芒 APIs,将网页在电视上面重新排版、展示。 37 | - 比如,某浏览器,使用轻芒 APIs,提供内容转码服务,为用户呈现与品牌调性一致的内容。 38 | - 比如,某财经 App,使用轻芒 APIs,为用户提供投资信息参考。 39 | - 比如,某电商平台,使用轻芒 APIs,为用户提供美妆、穿搭等内容。 40 | - …… 41 | 42 | 所以说,如果你喜欢轻芒的产品,但是觉得你可以搞得更好,现在就是「你行你上」的时候了。 43 | 44 | \- 45 | 46 | 轻芒 APIs 还处在内测阶段,你可以先欣赏我们的文档。文档放在 GitHub 上,当然,你一定是知道怎么打开 GitHub 的。 47 | 48 | 准备好科学上网后,你可以在浏览器中输入下面这个地址,阅读文档: 49 | 50 | [http://qingmang.io](http://qingmang.io) 51 | 52 | 如果想动手,请致信 hello@qingmang.me 索取权限,来者不拒。 53 | 54 | 如果你的产品经理朋友或者老板正在考虑这些,也欢迎转发这篇文章给他或她。如果你觉得这里写得太不正经了,后面有个正经得有点无聊的介绍,可以转发那个版本给他或她。 55 | 56 | 期待你用轻芒 APIs 搞出更有意思的产品。 57 | 58 | \- 59 | 60 | ## 正经的轻芒 APIs 介绍 61 | 62 | 「轻芒 APIs」是轻芒团队开发的商用数据 API 服务。合作伙伴通过「轻芒 APIs」能灵活地调用轻芒的各种数据服务,并针对各种需求完成数据索引、分析、聚类、结构化、转码。最终合作伙伴通过「轻芒 APIs」可以获得直接可用的数据。 63 | 64 | 「轻芒 APIs」的技术优势包括: 65 | - 全面的数据索引能力:轻芒不但支持网站、RSS 源、微博/微信等 SNS 的数据索引,而且是市面上唯一能提供商用级别应用内内容搜索能力的公司,可以针对需求索引指定 App 的内容。 66 | - 精准的数据聚类能力:通过多年的积累,轻芒拥有业内领先的数据聚类算法,既适用于财经、体育、游戏等传统大分类,也可用于咖啡、手工、美妆等细分兴趣分类。合作伙伴可直接提出特定类型的数据聚类需求,而无需提前准备内容源列表。 67 | - 强大的数据结构化能力:轻芒的智能分析算法能自动完成原文内容数据的结构化,并提供直接可用的字段,如:tag、封面图、视频播放地址、应用下载地址等。 68 | - 专业的数据转码能力:轻芒的转码技术可输出包括正文内容和对应语义的标准化数据,合作伙伴可利用结构化数据轻松地对内容做二次渲染,给用户提供原生的浏览体验。 69 | 70 | -------------------------------------------------------------------------------- /content/note_rss.md: -------------------------------------------------------------------------------- 1 | # 轻芒马克输出 RSS 开发者文档 2 | 3 | 该文档用于详述马克输出 RSS 相关话题,反馈建议可直接提 issue 或者 pr,或者加微信 hiqingmang 进开发者群参与讨论。 4 | 5 | ### 已经开发的应用合集 6 | 7 | 目前有以下一些应用,并持续更新中,感谢开发者们的贡献和分享;这里只是个列表,具体可看[这个文档](https://github.com/qingmang-team/docs/blob/master/content/note_rss_demo.md),里边有更详细的说明。 8 | 9 | - [大熊:博客主页的阅读动态](https://bearchao.com/) 10 | - [钱争予:竖排中文 DEMO](https://realfish.github.io/anti-chronological-feed/),[源码地址](https://github.com/realfish/anti-chronological-feed) 11 | - [KyXu:将马克同步至 Slack](https://slack.com/apps/A0F81R7U7-rss) 12 | - [囧哥:iOS 马克发送到 Flomo 捷径](https://www.icloud.com/shortcuts/e88a46a77df9430fb8339de742a8ffdb) 13 | - [ERR_CONNECTION_RESET:自动同步到 flomo 和 Telegram bot](https://github.com/dake0805/Qingmang-mark) 14 | - [extrastu:同步到 flomo 的 chrome 插件](https://www.notion.so/flomo-Plus-f440171cffbe40b997e6c45add04f658) 15 | - [懒童一枚:将 RSS 转换为 Json 或者网页 div 模块](https://github.com/liutongl5/QMark-API) 16 | 17 | ### 结构执行 RSS 2.0 标准 18 | 19 | 参考 [RSS 2 specification](https://validator.w3.org/feed/docs/rss2.html),可通过 [validator](https://validator.w3.org/feed/check.cgi) 校验 20 | 21 | - 只输出最新的 30 条马克,这里兼顾了易用性和性能 22 | - 马克按更新时间倒排序,这是与轻芒杂志 app 中的个人马克不同的地方,那里是按创建时间倒排的,但同一条马克的 [item guid tag](https://validator.w3.org/feed/docs/rss2.html#ltguidgtSubelementOfLtitemgt) 值固定,便于判断更新 23 | 24 | ### 马克 RSS url 25 | 26 | 地址如下,大部分用户的主页设置是不公开的,因此带有 secret 参数,用于校验权限,所以请妥善保管避免泄漏带来隐私问题: 27 | 28 | ``` 29 | https://qingmang.me/users/{uid}/feed/ 30 | ``` 31 | 32 | 少数用户本身的主页设置是公开的,那么就不带 secret,例如下边这个,可以随意使用: 33 | 34 | ``` 35 | https://qingmang.me/users/11/feed/ 36 | ``` 37 | 38 | ### 马克正文的 html 结构 39 | 40 | 也就是 [item](https://validator.w3.org/feed/docs/rss2.html#hrelementsOfLtitemgt) description tag,其中正文是用 ![CDATA[ 包装起来的,为提升可读性,html 也是经过 prettify 的。 41 | 42 | **马克引用的文章内容** 43 | 44 | ```html 45 |
46 | 47 | 48 | 49 | 51 |

52 | 53 | 将近1300年前,经历4次失败的鉴真和尚,第五次东渡日本。 54 |

55 | 56 | 57 | [0:00:49]/[1:10:44] 58 | 59 | 60 | 61 |

62 | 中国视协电视界职业道德建设委员会22日发布 63 |

64 | 65 | 66 |

67 | 中国视协电视界职业道德建设委员会22日发布 68 |

69 |

70 | 电视艺术工作者应自觉追求德艺双修 71 |

72 | 73 | 74 |
75 | 76 |
77 | 78 | 79 |

80 | 中国视协电视界职业道德建设委员会22日发布 81 |

82 |
83 | 84 |
85 |

86 | 电视艺术工作者应自觉追求德艺双修 87 |

88 |
89 | ``` 90 | 91 | **用户自己写的笔记内容** 92 | 93 | ```html 94 | 106 | ``` 107 | 108 | **笔记更新时间和点亮的灯泡** 109 | 110 | ```html 111 | 117 | ``` 118 | 119 | ### 马克正文图片防盗链问题 120 | 121 | 马克正文图片用的是文章里的原始链接,还请注意有些网站的图片防盗链问题,同时用户自己写的 annotation 里上传的图片不受防盗链的影响。 122 | 123 | ### 马克 web url 权限 124 | 125 | 也就是 [item guid tag](https://validator.w3.org/feed/docs/rss2.html#ltguidgtSubelementOfLtitemgt) 的值,地址如下: 126 | 127 | ``` 128 | https://qingmang.me/notes/{note_id} 129 | ``` 130 | 131 | 由于涉及到权限问题,该地址目前只是用来遵循 rss 的协议表示全局唯一性,暂时没有开放访问。 132 | 133 | ### 其他 134 | 135 | **还有其他开放的 api 吗?比如笔记增删改、马克到轻芒等等。** 136 | 137 | 暂时还未开放,但后期会提供给开发者的,包括用于开发第三方客户端的 api 等等。 138 | -------------------------------------------------------------------------------- /content/note_rss_demo.md: -------------------------------------------------------------------------------- 1 | # 「马克同步输出」 API DEMO 2 | 3 | ## 大熊:博客主页的阅读动态 4 | 5 | 作者:大熊 6 | 7 | 项目地址:https://bearchao.com/ 8 | 9 | 介绍:直接将 rss 输出作为阅读动态放在博客主页,相比较其他的微博动态插件、或者手动更新,更自动化,信息量也更大。 10 | 11 | ![img](http://statics01.qingmang.mobi/c6622cf486d3.jpg) 12 | 13 | 14 | 15 | 16 | 17 | ## 钱争予:竖排中文 DEMO 18 | 19 | 作者:钱争予 20 | 21 | 项目地址:https://github.com/realfish/anti-chronological-feed 22 | 23 | 观摩地址:https://realfish.github.io/anti-chronological-feed/ 24 | 25 | 介绍:将马克的文章和笔记以竖排中文的形式展现在网页上,体验中文排版的另外一种形式。 26 | 27 | > 这个 demo 展示了我早前关于逆序时间线的小研究/小实验(仅供娱乐……实际是我发现自己马克内容不多,所以就想做个玩具来试一下 web 竖排中文的一些东西)。 28 | 29 | > 遇到的(唯一)问题就是无法跨域请求 API。因为我最开始想的就是用 Ajax 获取马克 feed,解析/提取需要的内容后直接插入 HTML。(最后我临时布署了一个反向代理来绕开……) 30 | 31 | > Demo 里用的代理服务和 webfont 服务,从国内访问可能都不算太快。 32 | 33 | 34 | 35 | ![img](http://statics01.qingmang.mobi/266ff4b486d4.jpg) 36 | 37 | 38 | 39 | ## KyXu:将马克同步至 Slack 40 | 41 | 42 | 43 | 作者:KyXu 44 | 45 | Rss bot 地址:https://slack.com/apps/A0F81R7U7-rss 46 | 47 | 介绍:新建空白 channel,直接用 Slack 自带的 rss bot 搭建一个轻芒马克的 channel。这样可以充分 slack 对信息处理的各种优势,对马克笔记进行二次处理,也可以作为一个输出 channel 开放给会员。 48 | 49 | ![img](http://statics01.qingmang.mobi/3aed483886d4.jpg) 50 | 51 | 52 | 53 | 54 | 55 | ## 囧哥:iOS 马克发送到 flomo 捷径 56 | 57 | 作者:囧哥 58 | 59 | 捷径地址:https://www.icloud.com/shortcuts/e88a46a77df9430fb8339de742a8ffdb 60 | 61 | 介绍:一个比较方便的 iOS 捷径,马克后双击手机背面,把最新一条马克发到 flomo。充分利用了 iOS 辅助功能里提供的背面触控方式,可以说把手势操作利用到极致了。 62 | 63 | > 辅助功能——触控——轻点背面可以设置 64 | 65 | 66 | 67 | 68 | 69 | ## ERR_CONNECTION_RESET:自动同步到 flomo 和 Telegram bot 70 | 71 | 作者:ERR_CONNECTION_RESET 72 | 73 | 项目地址:https://github.com/dake0805/Qingmang-mark 74 | 75 | 介绍:本地环境搭建一个自动同步到 flomo 的服务,也可以方便输出到 Telegram bot,让感兴趣的读者订阅。 76 | 77 | 同步到 flomo 示例: 78 | 79 | ![img](http://statics01.qingmang.mobi/41bccd0a870b.jpg) 80 | 81 | 82 | 83 | Telegram Bot 示例: 84 | 85 | ![img](http://statics01.qingmang.mobi/3aed483886d4.jpg) 86 | 87 | 88 | 89 | ## extrastu: flomo Plus 插件 90 | 91 | 作者:extrastu 92 | 93 | 项目地址:https://www.notion.so/flomo-Plus-f440171cffbe40b997e6c45add04f658 94 | 95 | 介绍:作为 flomo Plus 的一个功能组件,可以选择同步马克的内容到 flomo。如果你是 flomo 的重度使用者,这是一款必备插件。 96 | 97 | ![img](http://statics01.qingmang.mobi/5588dc16870b.jpg) 98 | 99 | ## 懒童一枚:将 RSS 转换为 Json 或者网页 div 模块 100 | 101 | 作者:懒童一枚 102 | 103 | 项目地址:https://github.com/liutongl5/QMark-API 104 | 105 | 介绍:可以将轻芒杂志马克输出 api 的 rss 转换为 json、含有class类名的HTML网页 div 模块、Markdown(待完成),方便进行调用或者二次开发。 106 | 107 | ![img](http://statics01.qingmang.mobi/65db0f30870b.jpg) -------------------------------------------------------------------------------- /raml/intro.md: -------------------------------------------------------------------------------- 1 | # RAML 格式说明 2 | 3 | 4 | 5 | - [语言设计](#语言设计) 6 | - [语法介绍](#语法介绍) 7 | - [标记说明](#标记说明) 8 | - [段落内容标记](#段落内容标记) 9 | - [id](#id) 10 | - [type](#type) 11 | - [image](#image) 12 | - [media](#media) 13 | - [table](#table) 14 | - [段落样式标记](#段落样式标记) 15 | - [blockquote](#blockquote) 16 | - [linetype](#linetype) 17 | - [align](#align) 18 | - [文本标记](#文本标记) 19 | - [start + end](#start-+-end) 20 | - [tag](#tag) 21 | - [width + height](#width--height) 22 | - [source](#source) 23 | - [示例](#示例) 24 | - [工具](#工具) 25 | 26 | 27 | 28 | ## 语言设计 29 | `RAML (Ripple Article Markup Language)` 是用来描述文章正文的一种标记语言,其中包含文章的内容以及核心的结构,不同的端 Android/iOS/Web 都可以通过解释模版将其渲染成文章页面。 30 | 31 | ### 语法介绍 32 | RAML 是基于 `JSON` 进行描述的,它会将文章正文转换成一个 `JSON List` 的字符串。其中 List 的每一个元素,都是`文章的一个段落`,每个段落,都会包含相关的正文内容和语法标记。 33 | 34 | 一个简单的,包含一段文字和一张图片的示例说明如下: 35 | ``` json 36 | [ 37 | { 38 | "id":"935d", 39 | "type":0, 40 | "text":"这里是文本类型的正文", 41 | 42 | "markups":[ 43 | { 44 | "tag":"small", 45 | "start":4, 46 | "end":8, 47 | "source":"http://ifttt.com/medium", 48 | "width":0, 49 | "height":0 50 | } 51 | ] 52 | }, 53 | { 54 | "id":"4231", 55 | "type":1, 56 | "image": { 57 | "width":720, 58 | "height":480, 59 | "source":"http://ifttt.com/medium", 60 | } 61 | } 62 | ] 63 | ``` 64 | 65 | ## 标记说明 66 | RAML 中每一个 List 的元素,都是一个段落,其中包含一系列的 Key,这些 Key 可以分成如下几类: 67 | * `段落内容标记`。每个段落都会有文本或者其它内容,它们会用特定的标记来表示; 68 | * `段落样式标记`。每个段落也会有段落相关的样式标记,来表示它们在渲染时应该呈现的样子; 69 | * `文本标记`。如果段落是文本,会包含一系列的文本标记,使得 RAML 不仅可以表示纯文本,还可以表示富文本内容。 70 | 71 | ### 段落内容标记 72 | 73 | #### id 74 | 每个段落,都会有一个 id,是文章内对段落的标示。 75 | 76 | #### type 77 | 每个段落,会有一个类型,它用来指明该段落的主体内容,不同的 type 其主要内容字段会有所不同。比如,如果是文本类型,内容存储在 text 标记中;如果是图片类型,则存储在 image 标记中。 78 | 79 | 目前支持的 type 包括: 80 | * `0` 文本。内容在 text 中; 81 | * `1` 单图。内容在 image 中; 82 | * `2` 视频。内容在 media 中; 83 | * `3` 音频。内容在 media 中; 84 | * `4` 表格。内容在 table 中; 85 | * `10` 空行符。无内容,视觉上为了增加段落间隔; 86 | * `11` 分隔符。无内容,视觉上有一个分隔图标; 87 | 88 | ##### text 89 | 一个 `JSON Object`,富文本内容,包括: 90 | * `text`。纯文本的 text 字段,段落中的文字内容; 91 | * `markups`。辅助的标记信息,参看后面文本标记的介绍; 92 | 93 | #### image 94 | 一个 `JSON Object`,包括: 95 | * `source`。图片的 url 地址; 96 | * `width`。图片的宽度,整形,单位是 px; 97 | * `height`。图片的高度,整形,单位是 px; 98 | 99 | #### media 100 | 一个 `JSON Object`,包括: 101 | * `source`。视频的 url 地址; 102 | * `cover`。视频的 cover 图片地址; 103 | 104 | #### table 105 | 一个 `JSON Object`,包括: 106 | * `rowCount` 107 | * `colCount` 108 | 109 | ### 段落样式标记 110 | 在 text/image 等 `JSON Object` 中,还会有一些包含和段落样式相关的标记,包括如下这些。 111 | 112 | #### blockquote 113 | 在 RAML 中,用 blockquote 统一表示`制表符`,包括了引用、项目制表,等等。它的取值包括: 114 | * `0` 项目制表,这时候会出现 `li` 标签来表示制表符的类型,其中包括: 115 | - `type` 制表符类型,可以是 ol 或者是 ul 116 | - `level` 缩进层级,可以是 1、2,或者其他 117 | - `order` 次序,可以是 1、2,等等 118 | * `1` 引用 119 | 120 | #### linetype 121 | 在 RAML 中,用 linetype 表示一段文本的`语义`,取值包括: 122 | * `h1` 文章标题 123 | * `h2` 段落标题 124 | * `h3` 二级段落标题 125 | * `small` 字体缩小的文本 126 | * `big` 字体放大的文本 127 | * `pre` 类似代码之类的文本 128 | * `aside` 类似辅助说明之类的文本,一般居中显示 129 | 130 | 特别说明,在 RAML 设计中,我们把对字体之类的控制放到段落级别,来体现不同区块的重要性差别。而不会放在文本标记中,避免同一段文本中样式过于复杂。 131 | 132 | #### align 133 | 在 RAML,用 align 表示一个段落的排版位置,大部分时候,RAML 会避免使用这个标签而优先使用 linetype,仅会在一些比较复杂的样式里面使用 align 强行控制排版,它可能的取值包括: 134 | * `left` 左对齐,默认对齐方式 135 | * `center` 居中对齐 136 | 137 | ### 文本标记 138 | 当段落是文本时,可以添加一组的 markups 标签,来修饰某个部分文本所需的样式,以此来实现富文本效果。 139 | 140 | #### start + end 141 | 每个 markup 都有一组 start + end 来表示 markup 的作用范围,start 和 end 都是相对文本开头的偏移距离,取值范围是 `[0,段落长度)`,如果 start 缺失或者小于 0,视为 0;如果 end 缺失或者大于段落长度,可视为到段落末尾;如果 start 大于 end,视为 start 相等于 end。 142 | 143 | #### tag 144 | 每个 markup 由一个 tag 标签来表示 markup 的类型,其命名取自于 html 规范。目前支持的 tag 包括: 145 | 146 | | 标记 | 名字 | 备注 | 147 | | ------ | ---- | --------------------- | 148 | | strong | 重点 | 表示所 markup 部分为重点 | 149 | | em | 强调 | 表示所 markup 部分需要强调 | 150 | | a | 链接 | 点击后跳转到其它地方的超链接 | 151 | | img | 图片 | 内嵌图片,会和文字在同一行(不需要环绕) | 152 | | sup | 上标 | 右上角标 | 153 | | sub | 下标 | 右下角标 | 154 | 155 | #### width + height 156 | 类似 tag 为 img 的 markup,可能会并没有覆盖的文字(start 等于 end),这时候,就需要通过 width 和 height 属性来表示其需要占用的范围,同样,width 和 height 也是整形表示 px。 157 | 158 | #### source 159 | 类似 tag 为 img、a 的 markup,会有一些 web 地址信息,这时候,就需要通过 source 来存储对应的 web 地址。 160 | 161 | ## 示例 162 | * [图文文章](./samples/wx_text_and_image.raml)。原文参见[这里](http://mp.weixin.qq.com/s?__biz=MzAwODIyMTUyNQ==&mid=2651025950&idx=2&sn=ced5e572286a44a75f3bf352cb2e7915&chksm=8085f424b7f27d3241bb7bb25eb44ce14eb24c53685a8d2cd84266f9e781d5d3d0f5cbc7ec28#rd),包含图片、文字、引用等,用了非常多的样式信息,经过重新的排版转义后,生成样式更为统一的 RAML,渲染效果参见[这里](http://qingmang.me/magazines/7358/2017/02/12/7217265657588929268/?fulltext=1); 163 | * [文本排版](./samples/wx_markup_and_li.raml)。原文参见[这里](http://mp.weixin.qq.com/s?__biz=MjM5MjYxNzY2NA==&mid=2650454589&idx=1&sn=b824e271ca187970e05bc14b5580f8fe&chksm=bead9f9289da1684645f13cd8725b4e23d5e672343602cb4d8530f8b1bf67c5626bc2da762fd#rd),这是一篇包含很多文本样式的文章,转义后的效果参见[这里](http://qingmang.me/magazines/4880/2017/03/06/7917657200391947878/?fulltext=1); 164 | * [视频和链接](./samples/wx_text_and_image.raml)。原文参见[这里](http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653005489&idx=1&sn=193dd71d6677073ffbe845b221c0196d&chksm=bd449ca98a3315bff0e405127b18ee4f19ccfedd95dde37b90f851901e193ecb34868ebf438c#rd),有非常多的链接和视频,转义后的效果参见[这里](http://qingmang.me/magazines/7491/2017/03/06/3688605879307014948/?fulltext=1); 165 | * [表格](./samples/table.raml)。原文参见[这里](http://m.pcauto.com.cn/x/957/9577254_all.html),包含很多表格信息,转义后的效果参见[这里](http://qingmang.me/magazines/5678/-4443257712335137611/?fulltext=1); 166 | 167 | ## 工具 168 | * [Android Demo](https://github.com/lianpian/raml-sdk-android)。在 Android 上实现 RAML 的解析和渲染; 169 | -------------------------------------------------------------------------------- /raml/samples/table.raml: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0d0c", 4 | "type": 0, 5 | "text": { 6 | "text": "1 东风雪铁龙 爱丽舍 回顶部", 7 | "linetype": "h2" 8 | } 9 | }, 10 | { 11 | "id": "b1eb", 12 | "type": 0, 13 | "text": { 14 | "text": "【太平洋汽车网 导购频道】大多数消费者产生购车的念头往往其实只想要一台可以遮风挡雨的代步工具而已,不用再挤公交、地铁,顺便可以扩大自己的生活半径,对于造型、对于配置、对于动力并没有太高的要求,预算有限,价格越便宜越好。当然,好不容易买辆车,自然也不希望车子三天两头就进修理厂,既耽误时间,还要荷包大出血,所以有口碑的合资品牌就是一个比较有保障的选择。而首次购车的预算一般都控制在10万元左右,此次海选就为大家推荐四款符合上述要求的合资紧凑型家轿。", 15 | "markups": [ 16 | { 17 | "tag": "a", 18 | "start": 102, 19 | "end": 104, 20 | "source": "http://m.pcauto.com.cn/auto/sg9499/", 21 | "width": 0, 22 | "height": 0 23 | }, 24 | { 25 | "tag": "a", 26 | "start": 192, 27 | "end": 193, 28 | "source": "http://m.pcauto.com.cn/auto/sg11891/", 29 | "width": 0, 30 | "height": 0 31 | } 32 | ] 33 | } 34 | }, 35 | { 36 | "id": "3269", 37 | "type": 1, 38 | "image": { 39 | "width": 800, 40 | "height": 701, 41 | "source": "http://img.qingmang.mobi/image/orion/d8cf5d0e4638c818d9cf36f4118b1954_800_701.jpeg", 42 | "inline": false 43 | } 44 | }, 45 | { 46 | "id": "98e2", 47 | "type": 0, 48 | "text": { 49 | "text": "● 东风雪铁龙 爱丽舍\n官方指导售价:8.38-10.48万", 50 | "markups": [ 51 | { 52 | "tag": "strong", 53 | "start": 0, 54 | "end": 8, 55 | "width": 0, 56 | "height": 0 57 | }, 58 | { 59 | "tag": "a", 60 | "start": 8, 61 | "end": 11, 62 | "source": "http://m.pcauto.com.cn/auto/sg3187/", 63 | "width": 0, 64 | "height": 0 65 | }, 66 | { 67 | "tag": "strong", 68 | "start": 12, 69 | "end": 30, 70 | "width": 0, 71 | "height": 0 72 | } 73 | ] 74 | } 75 | }, 76 | { 77 | "id": "dd95", 78 | "type": 0, 79 | "text": { 80 | "text": "从1992年的富康开始,雪铁龙的名字就进入到国人的生活中。这棵常青树一直延续至今,名字虽然变为全新爱丽舍,但是实用舒适的品质,在经历了5代之后依旧延续了下来。作为雪铁龙旗下的家用入门级紧凑车型,全新爱丽舍在售价方面也有着较强的吸引力,是为数不多的十万以内合资家轿中的一员。正是凭借着实惠的价格和出色的实用表现,全新爱丽舍才能在日益激烈的市场竞争中拥有一片属于自己的领地。", 81 | "markups": [ 82 | { 83 | "tag": "a", 84 | "start": 7, 85 | "end": 9, 86 | "source": "http://m.pcauto.com.cn/auto/sg101/", 87 | "width": 0, 88 | "height": 0 89 | }, 90 | { 91 | "tag": "a", 92 | "start": 12, 93 | "end": 15, 94 | "source": "http://m.pcauto.com.cn/auto/nb6/", 95 | "width": 0, 96 | "height": 0 97 | }, 98 | { 99 | "tag": "a", 100 | "start": 47, 101 | "end": 52, 102 | "source": "http://m.pcauto.com.cn/auto/sg3187/", 103 | "width": 0, 104 | "height": 0 105 | } 106 | ] 107 | } 108 | }, 109 | { 110 | "id": "ac99", 111 | "type": 1, 112 | "image": { 113 | "width": 800, 114 | "height": 600, 115 | "source": "http://img.qingmang.mobi/image/orion/95e420a9f3a8bf995c00b08fb0f0f00c_800_600.jpeg", 116 | "inline": false 117 | } 118 | }, 119 | { 120 | "id": "5e17", 121 | "type": 0, 122 | "text": { 123 | "text": "-推荐理由一:外观设计更为时尚", 124 | "markups": [ 125 | { 126 | "tag": "strong", 127 | "start": 0, 128 | "end": 15, 129 | "width": 0, 130 | "height": 0 131 | } 132 | ] 133 | } 134 | }, 135 | { 136 | "id": "ca3b", 137 | "type": 0, 138 | "text": { 139 | "text": "2017款全新爱丽舍在外观设计上有着较为明显的变化,时尚感更足。新款车型在前脸的设计上更倾向雪铁龙家族式的风格,与头灯相连的镀铬中网显得更大更宽,视觉效果更佳。下方的进气网也改为横向线条,进一步提升车头的视觉宽度。雾灯位置加入了大面积的黑色饰板,与下方进气网相连,整体性更强。尾部的设计采用更为圆润的线条,与现款车型差别不大,回环型尾灯的设计富有层次感,且辨识度很高。" 140 | } 141 | }, 142 | { 143 | "id": "6b19", 144 | "type": 1, 145 | "image": { 146 | "width": 800, 147 | "height": 800, 148 | "source": "http://img.qingmang.mobi/image/orion/b3216247e6ff7cc1e43303c7f01501a1_800_800.jpeg", 149 | "inline": false 150 | } 151 | }, 152 | { 153 | "id": "29e6", 154 | "type": 1, 155 | "image": { 156 | "width": 800, 157 | "height": 800, 158 | "source": "http://img.qingmang.mobi/image/orion/10f3753ba58bc6efeae1c50635d38766_800_800.jpeg", 159 | "inline": false 160 | } 161 | }, 162 | { 163 | "id": "b56e", 164 | "type": 1, 165 | "image": { 166 | "width": 800, 167 | "height": 800, 168 | "source": "http://img.qingmang.mobi/image/orion/d552ba65b07bd80ac2105919b8fcb768_800_800.jpeg", 169 | "inline": false 170 | } 171 | }, 172 | { 173 | "id": "9607", 174 | "type": 1, 175 | "image": { 176 | "width": 800, 177 | "height": 800, 178 | "source": "http://img.qingmang.mobi/image/orion/1c5fcf201c2f89e24b2398b4727c184d_800_800.jpeg", 179 | "inline": false 180 | } 181 | }, 182 | { 183 | "id": "1e2d", 184 | "type": 0, 185 | "text": { 186 | "text": "-推荐理由二:空间满足家用不成问题", 187 | "markups": [ 188 | { 189 | "tag": "strong", 190 | "start": 0, 191 | "end": 17, 192 | "width": 0, 193 | "height": 0 194 | } 195 | ] 196 | } 197 | }, 198 | { 199 | "id": "cee6", 200 | "type": 0, 201 | "text": { 202 | "text": "2017款全新爱丽舍相比于现款,车身尺寸上并没有变动。与同级别的竞争对手相比,在长度上全新爱丽舍并没有优势,而宽和高也属于中等水平,但是2652mm长的轴距还是有着一定的优势,带来的空间表现在同级别中的表现也是很突出的。虽然对于这一级别的车来说,不能对空间有着过多的奢求,但如果是满足家用,全新爱丽舍的表现足够了。" 203 | } 204 | }, 205 | { 206 | "id": "b139", 207 | "type": 0, 208 | "text": { 209 | "text": "与竞品车型的尺寸对比" 210 | } 211 | }, 212 | { 213 | "id": "7729", 214 | "type": 4, 215 | "table": { 216 | "rowCount": 6, 217 | "colCount": 5, 218 | "items": [ 219 | [ 220 | { 221 | "text": "", 222 | "linetype": "big" 223 | } 224 | ], 225 | [ 226 | { 227 | "text": "车型" 228 | }, 229 | { 230 | "text": "全新爱丽舍" 231 | }, 232 | { 233 | "text": "捷达" 234 | }, 235 | { 236 | "text": "科沃兹" 237 | }, 238 | { 239 | "text": "锋范" 240 | } 241 | ], 242 | [ 243 | { 244 | "text": "长度(mm)" 245 | }, 246 | { 247 | "text": "4427" 248 | }, 249 | { 250 | "text": "4501" 251 | }, 252 | { 253 | "text": "4544" 254 | }, 255 | { 256 | "text": "4450" 257 | } 258 | ], 259 | [ 260 | { 261 | "text": "宽度(mm)" 262 | }, 263 | { 264 | "text": "1748" 265 | }, 266 | { 267 | "text": "1704" 268 | }, 269 | { 270 | "text": "1779" 271 | }, 272 | { 273 | "text": "1695" 274 | } 275 | ], 276 | [ 277 | { 278 | "text": "高度(mm)" 279 | }, 280 | { 281 | "text": "1476" 282 | }, 283 | { 284 | "text": "1469" 285 | }, 286 | { 287 | "text": "1467" 288 | }, 289 | { 290 | "text": "1477" 291 | } 292 | ], 293 | [ 294 | { 295 | "text": "轴距(mm)" 296 | }, 297 | { 298 | "text": "2652" 299 | }, 300 | { 301 | "text": "2604" 302 | }, 303 | { 304 | "text": "2600" 305 | }, 306 | { 307 | "text": "2600" 308 | } 309 | ] 310 | ], 311 | "show": true 312 | } 313 | }, 314 | { 315 | "id": "0f74", 316 | "type": 1, 317 | "image": { 318 | "width": 800, 319 | "height": 800, 320 | "source": "http://img.qingmang.mobi/image/orion/2289aa6303e46abfaae89c0346b344bc_800_800.jpeg", 321 | "inline": false 322 | } 323 | }, 324 | { 325 | "id": "3e16", 326 | "type": 1, 327 | "image": { 328 | "width": 800, 329 | "height": 800, 330 | "source": "http://img.qingmang.mobi/image/orion/d40e0d827b82152b3d9813add8d79f95_800_800.jpeg", 331 | "inline": false 332 | } 333 | }, 334 | { 335 | "id": "32fe", 336 | "type": 1, 337 | "image": { 338 | "width": 800, 339 | "height": 534, 340 | "source": "http://img.qingmang.mobi/image/orion/70b44f997224e1f3e43ed6ba1fdf16db_800_534.jpeg", 341 | "inline": false 342 | } 343 | }, 344 | { 345 | "id": "4864", 346 | "type": 0, 347 | "text": { 348 | "text": "-推荐理由三:动力舒适平顺", 349 | "markups": [ 350 | { 351 | "tag": "strong", 352 | "start": 0, 353 | "end": 13, 354 | "width": 0, 355 | "height": 0 356 | } 357 | ] 358 | } 359 | }, 360 | { 361 | "id": "86a5", 362 | "type": 0, 363 | "text": { 364 | "text": "2017款全新爱丽舍同样采用成熟的EMP1平台,全系搭载1.6L自然吸气发动机,与之匹配的是5速手动变速箱和6速手自一体变速箱,动力组合与现款保持一致。全新爱丽舍的这台发动机采用了连续可变正时气门技术,油耗表现令人满意。从参数来看,这台1.6L发动机与竞品车型使用的1.5L发动机表现相近,并不能占到什么便宜,而这一排量也是该级别车常用的,以满足日常需求为主,舒适平顺才是重点。全新爱丽舍采用前麦弗逊式独立悬挂及后扭力梁式非独立悬挂,这一组合在紧凑级家用车中常见,以侧重实用性为主。" 365 | } 366 | }, 367 | { 368 | "id": "57ab", 369 | "type": 0, 370 | "text": { 371 | "text": "与竞品车型的动力对比" 372 | } 373 | }, 374 | { 375 | "id": "d0c3", 376 | "type": 4, 377 | "table": { 378 | "rowCount": 6, 379 | "colCount": 5, 380 | "items": [ 381 | [ 382 | { 383 | "text": "", 384 | "linetype": "big" 385 | } 386 | ], 387 | [ 388 | { 389 | "text": "车型" 390 | }, 391 | { 392 | "text": "全新爱丽舍(1.6L)" 393 | }, 394 | { 395 | "text": "捷达(1.5L)" 396 | }, 397 | { 398 | "text": "科沃兹(1.5L)" 399 | }, 400 | { 401 | "text": "锋范(1.5L)" 402 | } 403 | ], 404 | [ 405 | { 406 | "text": "最大功率(kW)" 407 | }, 408 | { 409 | "text": "86" 410 | }, 411 | { 412 | "text": "81" 413 | }, 414 | { 415 | "text": "83" 416 | }, 417 | { 418 | "text": "96" 419 | } 420 | ], 421 | [ 422 | { 423 | "text": "最大功率转数(rpm)" 424 | }, 425 | { 426 | "text": "6000" 427 | }, 428 | { 429 | "text": "6000" 430 | }, 431 | { 432 | "text": "6000" 433 | }, 434 | { 435 | "text": "6600" 436 | } 437 | ], 438 | [ 439 | { 440 | "text": "峰值扭矩(N·m)" 441 | }, 442 | { 443 | "text": "150" 444 | }, 445 | { 446 | "text": "150" 447 | }, 448 | { 449 | "text": "141" 450 | }, 451 | { 452 | "text": "155" 453 | } 454 | ], 455 | [ 456 | { 457 | "text": "峰值扭矩转数(rpm)" 458 | }, 459 | { 460 | "text": "4000" 461 | }, 462 | { 463 | "text": "3800" 464 | }, 465 | { 466 | "text": "4000" 467 | }, 468 | { 469 | "text": "4600" 470 | } 471 | ] 472 | ], 473 | "show": true 474 | } 475 | }, 476 | { 477 | "id": "2185", 478 | "type": 1, 479 | "image": { 480 | "width": 800, 481 | "height": 534, 482 | "source": "http://img.qingmang.mobi/image/orion/e0b69d38129b3c996ab302263d353570_800_534.jpeg", 483 | "inline": false 484 | } 485 | }, 486 | { 487 | "id": "2933", 488 | "type": 1, 489 | "image": { 490 | "width": 800, 491 | "height": 534, 492 | "source": "http://img.qingmang.mobi/image/orion/3511c1ae2e48f7057b16e473632bbd84_800_534.jpeg", 493 | "inline": false 494 | } 495 | }, 496 | { 497 | "id": "547c", 498 | "type": 1, 499 | "image": { 500 | "width": 800, 501 | "height": 534, 502 | "source": "http://img.qingmang.mobi/image/orion/fab3cb18e83ce07d05119fae8c56d3ff_800_534.jpeg", 503 | "inline": false 504 | } 505 | }, 506 | { 507 | "id": "22dc", 508 | "type": 0, 509 | "text": { 510 | "text": "车型点评:新爱丽舍在设计上更加时尚,在配置上也有一定提升。不得不说,爱丽舍可以继续在车市中占有一席之地,与时俱进的设计和惠民的价格绝对是它的杀手锏。相信新车在上市不久后还会有一个不错的优惠政策,这将进一步的提升它的竞争力。作为家庭的第一台代步小车,爱丽舍绝对是个实惠的选择。", 511 | "markups": [ 512 | { 513 | "tag": "strong", 514 | "start": 0, 515 | "end": 5, 516 | "width": 0, 517 | "height": 0 518 | } 519 | ] 520 | } 521 | }, 522 | { 523 | "id": "2502", 524 | "type": 0, 525 | "text": { 526 | "text": "2 上汽通用雪佛兰 科沃兹 回顶部", 527 | "linetype": "h2" 528 | } 529 | }, 530 | { 531 | "id": "f20d", 532 | "type": 0, 533 | "text": { 534 | "text": "● 上汽通用雪佛兰科沃兹\n官方指导售价:7.99-10.99万", 535 | "markups": [ 536 | { 537 | "tag": "strong", 538 | "start": 0, 539 | "end": 6, 540 | "width": 0, 541 | "height": 0 542 | }, 543 | { 544 | "tag": "a", 545 | "start": 6, 546 | "end": 9, 547 | "source": "http://m.pcauto.com.cn/auto/nb225/", 548 | "width": 0, 549 | "height": 0 550 | }, 551 | { 552 | "tag": "a", 553 | "start": 9, 554 | "end": 12, 555 | "source": "http://m.pcauto.com.cn/auto/sg14375/", 556 | "width": 0, 557 | "height": 0 558 | }, 559 | { 560 | "tag": "strong", 561 | "start": 13, 562 | "end": 31, 563 | "width": 0, 564 | "height": 0 565 | } 566 | ] 567 | } 568 | }, 569 | { 570 | "id": "f1bf", 571 | "type": 0, 572 | "text": { 573 | "text": "科沃兹对于大家来说是一个新鲜的名字,虽然名字与科鲁兹仅有一字之差,但考虑到定位的差异和成本的原因,科沃兹并非与科鲁兹出自同一平台,并且从最近的销量排行榜也能看出这位新力军有着相当不错的口碑。", 574 | "markups": [ 575 | { 576 | "tag": "a", 577 | "start": 23, 578 | "end": 26, 579 | "source": "http://m.pcauto.com.cn/auto/sg3544/", 580 | "width": 0, 581 | "height": 0 582 | } 583 | ] 584 | } 585 | }, 586 | { 587 | "id": "b624", 588 | "type": 1, 589 | "image": { 590 | "width": 800, 591 | "height": 600, 592 | "source": "http://img.qingmang.mobi/image/orion/f8a22ae6606f0716b8263cc7aeb2e63d_800_600.jpeg", 593 | "inline": false 594 | } 595 | }, 596 | { 597 | "id": "6e62", 598 | "type": 0, 599 | "text": { 600 | "text": "-推荐理由一:新的雪佛兰家族设计更耐看", 601 | "markups": [ 602 | { 603 | "tag": "strong", 604 | "start": 0, 605 | "end": 19, 606 | "width": 0, 607 | "height": 0 608 | } 609 | ] 610 | } 611 | }, 612 | { 613 | "id": "85f6", 614 | "type": 0, 615 | "text": { 616 | "text": "新的科沃兹采用雪佛兰家族式设计风格,样子上与迈锐宝有点相似,给旁人一种沉稳大气的感觉,至少面子感不会差太远。", 617 | "markups": [ 618 | { 619 | "tag": "a", 620 | "start": 22, 621 | "end": 25, 622 | "source": "http://m.pcauto.com.cn/auto/sg1397/", 623 | "width": 0, 624 | "height": 0 625 | } 626 | ] 627 | } 628 | }, 629 | { 630 | "id": "fc10", 631 | "type": 1, 632 | "image": { 633 | "width": 800, 634 | "height": 720, 635 | "source": "http://img.qingmang.mobi/image/orion/104993fb962d446645312256874b1ffb_800_720.jpeg", 636 | "inline": false 637 | } 638 | }, 639 | { 640 | "id": "ed4f", 641 | "type": 1, 642 | "image": { 643 | "width": 800, 644 | "height": 720, 645 | "source": "http://img.qingmang.mobi/image/orion/d67104995b439c6ea67d9416fb01b343_800_720.jpeg", 646 | "inline": false 647 | } 648 | }, 649 | { 650 | "id": "3356", 651 | "type": 1, 652 | "image": { 653 | "width": 800, 654 | "height": 720, 655 | "source": "http://img.qingmang.mobi/image/orion/40c68532d3b4ae01101593ef17b131ce_800_720.jpeg", 656 | "inline": false 657 | } 658 | }, 659 | { 660 | "id": "a400", 661 | "type": 0, 662 | "text": { 663 | "text": "-推荐理由二:配置比较有针对性", 664 | "markups": [ 665 | { 666 | "tag": "strong", 667 | "start": 0, 668 | "end": 15, 669 | "width": 0, 670 | "height": 0 671 | } 672 | ] 673 | } 674 | }, 675 | { 676 | "id": "7188", 677 | "type": 0, 678 | "text": { 679 | "text": "其实在这个价位车型里面,厂家牺牲一点配置来控制成本也是情理之中的事情,不过对行车稳定有帮助配置上,科沃兹缺做得挺厚道。因为它也知道行车安全比什么都要重要。" 680 | } 681 | }, 682 | { 683 | "id": "50e8", 684 | "type": 1, 685 | "image": { 686 | "width": 800, 687 | "height": 1182, 688 | "source": "http://img.qingmang.mobi/image/orion/7445ac04faae7b040cb36547701d5619_800_1182.jpeg", 689 | "inline": false 690 | } 691 | }, 692 | { 693 | "id": "36e0", 694 | "type": 0, 695 | "text": { 696 | "text": "-推荐理由三:动力满足整体需求", 697 | "markups": [ 698 | { 699 | "tag": "strong", 700 | "start": 0, 701 | "end": 15, 702 | "width": 0, 703 | "height": 0 704 | } 705 | ] 706 | } 707 | }, 708 | { 709 | "id": "5f1e", 710 | "type": 0, 711 | "text": { 712 | "text": "这款代号为L2B的直列四缸发动机技术上没有太多值得细说的地方,成熟耐用算是它最大的优点所在。后期保养上也能为车主省下不少费用,对于这个级别来说是个好消息。传动方面采用的是6速手自一体变速箱,带启停功能。" 713 | } 714 | }, 715 | { 716 | "id": "32ec", 717 | "type": 1, 718 | "image": { 719 | "width": 800, 720 | "height": 1089, 721 | "source": "http://img.qingmang.mobi/image/orion/42ff60afd6b2b3fa86d548fe6db8a85d_800_1089.jpeg", 722 | "inline": false 723 | } 724 | }, 725 | { 726 | "id": "5d14", 727 | "type": 1, 728 | "image": { 729 | "width": 800, 730 | "height": 600, 731 | "source": "http://img.qingmang.mobi/image/orion/81ccfb56b15975ba81774651c8d1aae3_800_600.jpeg", 732 | "inline": false 733 | } 734 | }, 735 | { 736 | "id": "3830", 737 | "type": 0, 738 | "text": { 739 | "text": "车型点评:诚然取材于家族大哥迈锐宝的很多设计元素让科沃兹在同级中算是可以靠脸吃饭的选手了,胎压监测、真皮座椅、LED日行灯这些配置可以说针对性地瞄准了同级车型在配置上的不足,可以说科沃兹是有备而来。", 740 | "markups": [ 741 | { 742 | "tag": "strong", 743 | "start": 0, 744 | "end": 5, 745 | "width": 0, 746 | "height": 0 747 | }, 748 | { 749 | "tag": "a", 750 | "start": 22, 751 | "end": 23, 752 | "source": "http://m.pcauto.com.cn/auto/sg11891/", 753 | "width": 0, 754 | "height": 0 755 | } 756 | ] 757 | } 758 | }, 759 | { 760 | "id": "ddc9", 761 | "type": 0, 762 | "text": { 763 | "text": "3 一汽-大众 捷达 回顶部", 764 | "linetype": "h2" 765 | } 766 | }, 767 | { 768 | "id": "c12c", 769 | "type": 0, 770 | "text": { 771 | "text": "● 一汽-大众 捷达\n官方指导售价:7.99-13.49万", 772 | "markups": [ 773 | { 774 | "tag": "strong", 775 | "start": 0, 776 | "end": 8, 777 | "width": 0, 778 | "height": 0 779 | }, 780 | { 781 | "tag": "a", 782 | "start": 8, 783 | "end": 10, 784 | "source": "http://m.pcauto.com.cn/auto/sg89/", 785 | "width": 0, 786 | "height": 0 787 | }, 788 | { 789 | "tag": "strong", 790 | "start": 11, 791 | "end": 29, 792 | "width": 0, 793 | "height": 0 794 | } 795 | ] 796 | } 797 | }, 798 | { 799 | "id": "f774", 800 | "type": 0, 801 | "text": { 802 | "text": "捷达这个名字在中国可谓家喻户晓,甚至可以说有不少人一次坐、第一次开的车都是捷达。在2016广州车展上,一汽-大众2017款新捷达正式发布,除了外观上更接近新款宝来和配置有所升级以外,外观内饰的诸多细节都进行了更为讲究的优化。此外新的1.5L引擎取代了现有的1.6L动力,功率不变,扭矩上稍低一些。" 803 | } 804 | }, 805 | { 806 | "id": "be85", 807 | "type": 1, 808 | "image": { 809 | "width": 800, 810 | "height": 600, 811 | "source": "http://img.qingmang.mobi/image/orion/19f1452375beb9feb0bf25df2ff41e16_800_600.jpeg", 812 | "inline": false 813 | } 814 | }, 815 | { 816 | "id": "9df1", 817 | "type": 0, 818 | "text": { 819 | "text": "-推荐理由一:外观细节更加精致", 820 | "markups": [ 821 | { 822 | "tag": "strong", 823 | "start": 0, 824 | "end": 15, 825 | "width": 0, 826 | "height": 0 827 | } 828 | ] 829 | } 830 | }, 831 | { 832 | "id": "4fff", 833 | "type": 0, 834 | "text": { 835 | "text": "新捷达外观上的改变可以说是一大亮点。双辐中网被多辐镀铬中网所取代,造型上与朗逸、宝来一样,镀铬饰条的金属质感也有所增强。头灯的样式也更加有神,且面积有所增加。新捷达在外观细节上的处理明显要更加精致,看起来更加上档次。", 836 | "markups": [ 837 | { 838 | "tag": "a", 839 | "start": 37, 840 | "end": 39, 841 | "source": "http://m.pcauto.com.cn/auto/sg3225/", 842 | "width": 0, 843 | "height": 0 844 | } 845 | ] 846 | } 847 | }, 848 | { 849 | "id": "fceb", 850 | "type": 1, 851 | "image": { 852 | "width": 800, 853 | "height": 632, 854 | "source": "http://img.qingmang.mobi/image/orion/dfb0c8deb93ae6be0e67dd4281eabaf7_800_632.jpeg", 855 | "inline": false 856 | } 857 | }, 858 | { 859 | "id": "7773", 860 | "type": 1, 861 | "image": { 862 | "width": 800, 863 | "height": 1166, 864 | "source": "http://img.qingmang.mobi/image/orion/bb9646b5d0f5a0b1e9f3b6ec0ad32373_800_1166.jpeg", 865 | "inline": false 866 | } 867 | }, 868 | { 869 | "id": "0419", 870 | "type": 1, 871 | "image": { 872 | "width": 800, 873 | "height": 592, 874 | "source": "http://img.qingmang.mobi/image/orion/7ec9f70dd1b6bd1d1c7ffff2813b64e5_800_592.jpeg", 875 | "inline": false 876 | } 877 | }, 878 | { 879 | "id": "d351", 880 | "type": 1, 881 | "image": { 882 | "width": 800, 883 | "height": 632, 884 | "source": "http://img.qingmang.mobi/image/orion/c205eef635288bddfa43e3676572dbf0_800_632.jpeg", 885 | "inline": false 886 | } 887 | }, 888 | { 889 | "id": "2861", 890 | "type": 1, 891 | "image": { 892 | "width": 800, 893 | "height": 1166, 894 | "source": "http://img.qingmang.mobi/image/orion/f35b0d8ccf8508531afae053436921bf_800_1166.jpeg", 895 | "inline": false 896 | } 897 | }, 898 | { 899 | "id": "3d2c", 900 | "type": 0, 901 | "text": { 902 | "text": "-推荐理由二:内饰细节处理更考究 提升整体档次感", 903 | "markups": [ 904 | { 905 | "tag": "strong", 906 | "start": 0, 907 | "end": 24, 908 | "width": 0, 909 | "height": 0 910 | } 911 | ] 912 | } 913 | }, 914 | { 915 | "id": "4600", 916 | "type": 0, 917 | "text": { 918 | "text": "内饰样式上新捷达没有过多改动,但是在细节上加入更多镀铬饰条及烤漆面板提升档次。全新家族式的方向盘也得到了更新,内饰向宝来、速腾等车型靠拢。", 919 | "markups": [ 920 | { 921 | "tag": "a", 922 | "start": 61, 923 | "end": 63, 924 | "source": "http://m.pcauto.com.cn/auto/sg1633/", 925 | "width": 0, 926 | "height": 0 927 | } 928 | ] 929 | } 930 | }, 931 | { 932 | "id": "a3b5", 933 | "type": 1, 934 | "image": { 935 | "width": 800, 936 | "height": 632, 937 | "source": "http://img.qingmang.mobi/image/orion/3d3d91f28c1f785a364708919a54d835_800_632.jpeg", 938 | "inline": false 939 | } 940 | }, 941 | { 942 | "id": "ea42", 943 | "type": 1, 944 | "image": { 945 | "width": 800, 946 | "height": 632, 947 | "source": "http://img.qingmang.mobi/image/orion/349151b534e4001937dc96a364e984ed_800_632.jpeg", 948 | "inline": false 949 | } 950 | }, 951 | { 952 | "id": "e8a8", 953 | "type": 1, 954 | "image": { 955 | "width": 800, 956 | "height": 592, 957 | "source": "http://img.qingmang.mobi/image/orion/6abbeeb53fc7d4cd9ac4441d0776244c_800_592.jpeg", 958 | "inline": false 959 | } 960 | }, 961 | { 962 | "id": "c656", 963 | "type": 1, 964 | "image": { 965 | "width": 800, 966 | "height": 655, 967 | "source": "http://img.qingmang.mobi/image/orion/c1b2a39ebe5df8f0588bb3423b6fbf8e_800_655.jpeg", 968 | "inline": false 969 | } 970 | }, 971 | { 972 | "id": "ce8d", 973 | "type": 0, 974 | "text": { 975 | "text": "-推荐理由三:换装全新1.5L发动机", 976 | "markups": [ 977 | { 978 | "tag": "strong", 979 | "start": 0, 980 | "end": 18, 981 | "width": 0, 982 | "height": 0 983 | } 984 | ] 985 | } 986 | }, 987 | { 988 | "id": "a39c", 989 | "type": 0, 990 | "text": { 991 | "text": "新捷达提供1.4L和1.5L动力可选,最大功率分别为66kW(99PS)和81kW(110PS),其中1.5L引擎输出功率与现款1.6L一致,但扭矩略微下降,传动部分可选5MT或6AT变速器。" 992 | } 993 | }, 994 | { 995 | "id": "914e", 996 | "type": 1, 997 | "image": { 998 | "width": 800, 999 | "height": 632, 1000 | "source": "http://img.qingmang.mobi/image/orion/9c9bb8a79f92ea683328f71b024f3972_800_632.jpeg", 1001 | "inline": false 1002 | } 1003 | }, 1004 | { 1005 | "id": "655e", 1006 | "type": 1, 1007 | "image": { 1008 | "width": 800, 1009 | "height": 632, 1010 | "source": "http://img.qingmang.mobi/image/orion/e3d32d9ef95805dd093ff48e9cd136c5_800_632.jpeg", 1011 | "inline": false 1012 | } 1013 | }, 1014 | { 1015 | "id": "51c4", 1016 | "type": 0, 1017 | "text": { 1018 | "text": "车型点评:捷达有着非常出色的月销量,但曾经配置偏低整体不够高档的问题也是让一些车主比较摇摆的,新捷达的升级可以说把这批摇摆的车主用力地拉向了自己,精致的内饰和更加大气的外观都和家族中更高一级别的车型靠近,如果再结合一定的优惠,整体竞争力相比现款会有一个较大的提升。", 1019 | "markups": [ 1020 | { 1021 | "tag": "strong", 1022 | "start": 0, 1023 | "end": 5, 1024 | "width": 0, 1025 | "height": 0 1026 | } 1027 | ] 1028 | } 1029 | }, 1030 | { 1031 | "id": "fb1a", 1032 | "type": 0, 1033 | "text": { 1034 | "text": "4 长安铃木 启悦 回顶部", 1035 | "linetype": "h2" 1036 | } 1037 | }, 1038 | { 1039 | "id": "b4fa", 1040 | "type": 0, 1041 | "text": { 1042 | "text": "● 长安铃木启悦\n官方指导售价:7.89-11.39万", 1043 | "markups": [ 1044 | { 1045 | "tag": "strong", 1046 | "start": 0, 1047 | "end": 6, 1048 | "width": 0, 1049 | "height": 0 1050 | }, 1051 | { 1052 | "tag": "a", 1053 | "start": 6, 1054 | "end": 8, 1055 | "source": "http://m.pcauto.com.cn/auto/sg10846/", 1056 | "width": 0, 1057 | "height": 0 1058 | }, 1059 | { 1060 | "tag": "strong", 1061 | "start": 9, 1062 | "end": 27, 1063 | "width": 0, 1064 | "height": 0 1065 | } 1066 | ] 1067 | } 1068 | }, 1069 | { 1070 | "id": "87ae", 1071 | "type": 0, 1072 | "text": { 1073 | "text": "启悦是长安铃木推出的一款紧凑型家用轿车,它有着铃木家用车一贯的价低好开的传统,但同时在整车的品质、油耗表现等方面有了更好的提升,俨然走上精品家轿的路线。虽然铃木在品牌传播上不及本田福特这些大牌,但启悦在保证低价的同时有着非常高的配置,这就足以打动不少人了。", 1074 | "markups": [ 1075 | { 1076 | "tag": "a", 1077 | "start": 0, 1078 | "end": 2, 1079 | "source": "http://m.pcauto.com.cn/auto/sg10846/", 1080 | "width": 0, 1081 | "height": 0 1082 | }, 1083 | { 1084 | "tag": "a", 1085 | "start": 23, 1086 | "end": 25, 1087 | "source": "http://m.pcauto.com.cn/auto/nb73/", 1088 | "width": 0, 1089 | "height": 0 1090 | }, 1091 | { 1092 | "tag": "a", 1093 | "start": 88, 1094 | "end": 90, 1095 | "source": "http://m.pcauto.com.cn/auto/nb3/", 1096 | "width": 0, 1097 | "height": 0 1098 | }, 1099 | { 1100 | "tag": "a", 1101 | "start": 90, 1102 | "end": 92, 1103 | "source": "http://m.pcauto.com.cn/auto/nb21/", 1104 | "width": 0, 1105 | "height": 0 1106 | } 1107 | ] 1108 | } 1109 | }, 1110 | { 1111 | "id": "4f1a", 1112 | "type": 1, 1113 | "image": { 1114 | "width": 800, 1115 | "height": 600, 1116 | "source": "http://img.qingmang.mobi/image/orion/bdd9cd524acd64b575442d6685320608_800_600.jpeg", 1117 | "inline": false 1118 | } 1119 | }, 1120 | { 1121 | "id": "28d9", 1122 | "type": 0, 1123 | "text": { 1124 | "text": "-推荐理由一:整体配置高", 1125 | "markups": [ 1126 | { 1127 | "tag": "strong", 1128 | "start": 0, 1129 | "end": 12, 1130 | "width": 0, 1131 | "height": 0 1132 | } 1133 | ] 1134 | } 1135 | }, 1136 | { 1137 | "id": "b5ca", 1138 | "type": 0, 1139 | "text": { 1140 | "text": "从我们的购车手册中就不难看出,启悦的确在配置上给出了不少诚意,中配车型以上的配置就已经相当出彩了。毕竟十万元以内的合资轿车,能给到你6个气囊、ESP车身动态稳定系统、真皮包裹、一键启动这些东西可以说是很少见的了。", 1141 | "markups": [ 1142 | { 1143 | "tag": "a", 1144 | "start": 53, 1145 | "end": 54, 1146 | "source": "http://m.pcauto.com.cn/auto/sg11891/", 1147 | "width": 0, 1148 | "height": 0 1149 | } 1150 | ] 1151 | } 1152 | }, 1153 | { 1154 | "id": "48e8", 1155 | "type": 1, 1156 | "image": { 1157 | "width": 800, 1158 | "height": 534, 1159 | "source": "http://img.qingmang.mobi/image/orion/026964655a6f3f37b1d4e37d50bf9111_800_534.jpeg", 1160 | "inline": false 1161 | } 1162 | }, 1163 | { 1164 | "id": "2a06", 1165 | "type": 1, 1166 | "image": { 1167 | "width": 800, 1168 | "height": 534, 1169 | "source": "http://img.qingmang.mobi/image/orion/00e8402c1a74ff5e4fea71f6a2b7ebe6_800_534.jpeg", 1170 | "inline": false 1171 | } 1172 | }, 1173 | { 1174 | "id": "08b1", 1175 | "type": 1, 1176 | "image": { 1177 | "width": 800, 1178 | "height": 534, 1179 | "source": "http://img.qingmang.mobi/image/orion/866a7487ad7808bb1d63877bbc8b170e_800_534.jpeg", 1180 | "inline": false 1181 | } 1182 | }, 1183 | { 1184 | "id": "132e", 1185 | "type": 1, 1186 | "image": { 1187 | "width": 800, 1188 | "height": 534, 1189 | "source": "http://img.qingmang.mobi/image/orion/c9dd1fdda09c90909e91a6541527fd5d_800_534.jpeg", 1190 | "inline": false 1191 | } 1192 | }, 1193 | { 1194 | "id": "788a", 1195 | "type": 0, 1196 | "text": { 1197 | "text": "-推荐理由二:令人惊喜的油耗表现", 1198 | "markups": [ 1199 | { 1200 | "tag": "strong", 1201 | "start": 0, 1202 | "end": 16, 1203 | "width": 0, 1204 | "height": 0 1205 | } 1206 | ] 1207 | } 1208 | }, 1209 | { 1210 | "id": "9400", 1211 | "type": 0, 1212 | "text": { 1213 | "text": "启悦采用了与锋驭相同的G-INNOTEC 1.6L全铝VVT自然吸气发动机,也许在数据上并不显眼,但对于这个级别的家用车来说可靠且燃油经济好才是重点。得益于良好的匹配,它的自动挡(6AT)车型综合油耗5.6L/km,而手动挡(5MT)车型更是低至5.3L/100km,而经过我们的实际体验,它在燃油积极性方面确实有着很不错的表现。", 1214 | "markups": [ 1215 | { 1216 | "tag": "a", 1217 | "start": 6, 1218 | "end": 8, 1219 | "source": "http://m.pcauto.com.cn/auto/sg8575/", 1220 | "width": 0, 1221 | "height": 0 1222 | } 1223 | ] 1224 | } 1225 | }, 1226 | { 1227 | "id": "266d", 1228 | "type": 1, 1229 | "image": { 1230 | "width": 800, 1231 | "height": 534, 1232 | "source": "http://img.qingmang.mobi/image/orion/6738941734e33a8e0adb0adfd14795ef_800_534.jpeg", 1233 | "inline": false 1234 | } 1235 | }, 1236 | { 1237 | "id": "7052", 1238 | "type": 1, 1239 | "image": { 1240 | "width": 800, 1241 | "height": 534, 1242 | "source": "http://img.qingmang.mobi/image/orion/1158450b2703f41ec66c3f72d176e502_800_534.jpeg", 1243 | "inline": false 1244 | } 1245 | }, 1246 | { 1247 | "id": "131a", 1248 | "type": 0, 1249 | "text": { 1250 | "text": "-推荐理由三:设计新鲜感足", 1251 | "markups": [ 1252 | { 1253 | "tag": "strong", 1254 | "start": 0, 1255 | "end": 13, 1256 | "width": 0, 1257 | "height": 0 1258 | } 1259 | ] 1260 | } 1261 | }, 1262 | { 1263 | "id": "f112", 1264 | "type": 0, 1265 | "text": { 1266 | "text": "启悦的外观源自其概念车Concept ALIVIO,其设计理念以“Sporty&Noble(动感与优雅)”主题,外观动感之余还满足亚洲用户对大气时尚的喜好,而令人欣喜的是国产后的启悦原滋原味的保留了概念车的设计,动感前卫的外观足够亮眼。尺寸方面,启悦作为紧凑级家轿,属于同级别主流水平,并且在视觉上颇显大气。", 1267 | "markups": [ 1268 | { 1269 | "tag": "a", 1270 | "start": 29, 1271 | "end": 31, 1272 | "source": "http://m.pcauto.com.cn/auto/nb604/", 1273 | "width": 0, 1274 | "height": 0 1275 | }, 1276 | { 1277 | "tag": "a", 1278 | "start": 49, 1279 | "end": 51, 1280 | "source": "http://m.pcauto.com.cn/auto/sg5062/", 1281 | "width": 0, 1282 | "height": 0 1283 | } 1284 | ] 1285 | } 1286 | }, 1287 | { 1288 | "id": "f678", 1289 | "type": 1, 1290 | "image": { 1291 | "width": 800, 1292 | "height": 534, 1293 | "source": "http://img.qingmang.mobi/image/orion/a4e4e45824d74433479374ce32dbe651_800_534.jpeg", 1294 | "inline": false 1295 | } 1296 | }, 1297 | { 1298 | "id": "a606", 1299 | "type": 1, 1300 | "image": { 1301 | "width": 800, 1302 | "height": 534, 1303 | "source": "http://img.qingmang.mobi/image/orion/0f6e033a067faff36ccce271a0c36f8d_800_534.jpeg", 1304 | "inline": false 1305 | } 1306 | }, 1307 | { 1308 | "id": "91e7", 1309 | "type": 1, 1310 | "image": { 1311 | "width": 800, 1312 | "height": 534, 1313 | "source": "http://img.qingmang.mobi/image/orion/482f38e3074e45e083d182ba85234827_800_534.jpeg", 1314 | "inline": false 1315 | } 1316 | }, 1317 | { 1318 | "id": "d685", 1319 | "type": 0, 1320 | "text": { 1321 | "text": "车型点评:启悦是一款蛮适合“国情”的家用轿车,它可能没有什么太多的个性,但它擅长的点却是处处迎合了我们国内消费者的需求:造型成熟、配置出彩、油耗不高,价格合理且全系都有三千块的节能优惠补贴。所以尽管说启悦在紧凑级轿车中只是个“新来者”,但我还是建议您不妨去试试它,或许它给带来的惊喜比这里说的还要多。", 1322 | "markups": [ 1323 | { 1324 | "tag": "strong", 1325 | "start": 0, 1326 | "end": 5, 1327 | "width": 0, 1328 | "height": 0 1329 | } 1330 | ] 1331 | } 1332 | }, 1333 | { 1334 | "id": "e684", 1335 | "type": 0, 1336 | "text": { 1337 | "text": "总结:本次推荐的四款合资紧凑型家轿定位都比较亲民,最低配仅7万元出头,就算是顶配,也不到12万,还没有算上加大的优惠幅度呢,所以从价格来说的确比较吸引。四款车型中,爱丽舍是当年的新三样之一,口碑还是相当不错的,最重要的是底盘操控性能比较出色;科沃兹看上去比较高档大气一些,而且也加入很多越级的配置;捷达口碑那是毋庸置疑,而且大众品牌的做工也是经得起琢磨的;启悦继承了日系车一贯的低油耗,而且性价比相当高,也是不错的选择。如果还有其它关于购车方面的问题,也可以多多关注我们的《选车晚9点》这一档真人即时在线回答的栏目,我们将竭尽所能为大家排忧解难。(图/文/摄:太平洋汽车网 林国兴)", 1338 | "markups": [ 1339 | { 1340 | "tag": "strong", 1341 | "start": 0, 1342 | "end": 3, 1343 | "width": 0, 1344 | "height": 0 1345 | }, 1346 | { 1347 | "tag": "a", 1348 | "start": 82, 1349 | "end": 85, 1350 | "source": "http://m.pcauto.com.cn/auto/sg3187/", 1351 | "width": 0, 1352 | "height": 0 1353 | }, 1354 | { 1355 | "tag": "a", 1356 | "start": 121, 1357 | "end": 124, 1358 | "source": "http://m.pcauto.com.cn/auto/sg14375/", 1359 | "width": 0, 1360 | "height": 0 1361 | }, 1362 | { 1363 | "tag": "a", 1364 | "start": 149, 1365 | "end": 151, 1366 | "source": "http://m.pcauto.com.cn/auto/sg89/", 1367 | "width": 0, 1368 | "height": 0 1369 | }, 1370 | { 1371 | "tag": "strong", 1372 | "start": 237, 1373 | "end": 242, 1374 | "width": 0, 1375 | "height": 0 1376 | } 1377 | ] 1378 | } 1379 | }, 1380 | { 1381 | "id": "5b74", 1382 | "type": 0, 1383 | "text": { 1384 | "text": "5 车型参数配置对比 回顶部", 1385 | "linetype": "h2" 1386 | } 1387 | }, 1388 | { 1389 | "id": "b2c1", 1390 | "type": 0, 1391 | "text": { 1392 | "text": "车型参数对比" 1393 | } 1394 | }, 1395 | { 1396 | "id": "b32b", 1397 | "type": 4, 1398 | "table": { 1399 | "rowCount": 14, 1400 | "colCount": 5, 1401 | "items": [ 1402 | [ 1403 | { 1404 | "text": "", 1405 | "linetype": "big" 1406 | } 1407 | ], 1408 | [ 1409 | { 1410 | "text": "图片" 1411 | }, 1412 | { 1413 | "text": "", 1414 | "markups": [ 1415 | { 1416 | "tag": "img", 1417 | "start": 0, 1418 | "end": 1, 1419 | "source": "http://img.qingmang.mobi/image/orion/30043e64b6fa431de4c12c4c2fbe21ce_400_300.jpeg", 1420 | "width": 400, 1421 | "height": 300 1422 | } 1423 | ] 1424 | }, 1425 | { 1426 | "text": "", 1427 | "markups": [ 1428 | { 1429 | "tag": "img", 1430 | "start": 0, 1431 | "end": 1, 1432 | "source": "http://img.qingmang.mobi/image/orion/3e04019e0980bd457b2cdbe65e428e89_400_300.jpeg", 1433 | "width": 400, 1434 | "height": 300 1435 | } 1436 | ] 1437 | }, 1438 | { 1439 | "text": "", 1440 | "markups": [ 1441 | { 1442 | "tag": "img", 1443 | "start": 0, 1444 | "end": 1, 1445 | "source": "http://img.qingmang.mobi/image/orion/5244ab1934c3c4386b70375785dc1715_400_300.jpeg", 1446 | "width": 400, 1447 | "height": 300 1448 | } 1449 | ] 1450 | }, 1451 | { 1452 | "text": "", 1453 | "markups": [ 1454 | { 1455 | "tag": "img", 1456 | "start": 0, 1457 | "end": 1, 1458 | "source": "http://img.qingmang.mobi/image/orion/2059acbcebd76a6a6b7573159fbcfd1c_400_300.jpeg", 1459 | "width": 400, 1460 | "height": 300 1461 | } 1462 | ] 1463 | } 1464 | ], 1465 | [ 1466 | { 1467 | "text": "车型" 1468 | }, 1469 | { 1470 | "text": "全新爱丽舍2017款1.6L 自动舒适型", 1471 | "markups": [ 1472 | { 1473 | "tag": "a", 1474 | "start": 0, 1475 | "end": 20, 1476 | "source": "http://m.pcauto.com.cn/auto/sg3187/m75076/", 1477 | "width": 0, 1478 | "height": 0 1479 | } 1480 | ] 1481 | }, 1482 | { 1483 | "text": "科沃兹2016款1.5L 自动欣享版", 1484 | "markups": [ 1485 | { 1486 | "tag": "a", 1487 | "start": 0, 1488 | "end": 18, 1489 | "source": "http://m.pcauto.com.cn/auto/sg14375/m71818/", 1490 | "width": 0, 1491 | "height": 0 1492 | } 1493 | ] 1494 | }, 1495 | { 1496 | "text": "捷达2017款1.5L 自动豪华型", 1497 | "markups": [ 1498 | { 1499 | "tag": "a", 1500 | "start": 0, 1501 | "end": 17, 1502 | "source": "http://m.pcauto.com.cn/auto/sg89/m73871/", 1503 | "width": 0, 1504 | "height": 0 1505 | } 1506 | ] 1507 | }, 1508 | { 1509 | "text": "启悦2015款1.6L 自动尊享型", 1510 | "markups": [ 1511 | { 1512 | "tag": "a", 1513 | "start": 0, 1514 | "end": 17, 1515 | "source": "http://m.pcauto.com.cn/auto/sg10846/m36183/", 1516 | "width": 0, 1517 | "height": 0 1518 | } 1519 | ] 1520 | } 1521 | ], 1522 | [ 1523 | { 1524 | "text": "官方价" 1525 | }, 1526 | { 1527 | "text": "10.48万" 1528 | }, 1529 | { 1530 | "text": "8.89万" 1531 | }, 1532 | { 1533 | "text": "11.96万" 1534 | }, 1535 | { 1536 | "text": "11.39万" 1537 | } 1538 | ], 1539 | [ 1540 | { 1541 | "text": "厂商" 1542 | }, 1543 | { 1544 | "text": "东风雪铁龙" 1545 | }, 1546 | { 1547 | "text": "上汽通用雪佛兰" 1548 | }, 1549 | { 1550 | "text": "一汽-大众" 1551 | }, 1552 | { 1553 | "text": "长安铃木" 1554 | } 1555 | ], 1556 | [ 1557 | { 1558 | "text": "级别" 1559 | }, 1560 | { 1561 | "text": "紧凑型车" 1562 | }, 1563 | { 1564 | "text": "紧凑型车" 1565 | }, 1566 | { 1567 | "text": "紧凑型车" 1568 | }, 1569 | { 1570 | "text": "紧凑型车" 1571 | } 1572 | ], 1573 | [ 1574 | { 1575 | "text": "上市时间" 1576 | }, 1577 | { 1578 | "text": "2017-02" 1579 | }, 1580 | { 1581 | "text": "2016-09" 1582 | }, 1583 | { 1584 | "text": "2016-12" 1585 | }, 1586 | { 1587 | "text": "2014-12" 1588 | } 1589 | ], 1590 | [ 1591 | { 1592 | "text": "发动机" 1593 | }, 1594 | { 1595 | "text": "1.6L L4" 1596 | }, 1597 | { 1598 | "text": "1.5L L4" 1599 | }, 1600 | { 1601 | "text": "1.5L L4" 1602 | }, 1603 | { 1604 | "text": "1.6L L4" 1605 | } 1606 | ], 1607 | [ 1608 | { 1609 | "text": "进气形式" 1610 | }, 1611 | { 1612 | "text": "自然吸气" 1613 | }, 1614 | { 1615 | "text": "自然吸气" 1616 | }, 1617 | { 1618 | "text": "自然吸气" 1619 | }, 1620 | { 1621 | "text": "自然吸气" 1622 | } 1623 | ], 1624 | [ 1625 | { 1626 | "text": "最大马力(PS)" 1627 | }, 1628 | { 1629 | "text": "117" 1630 | }, 1631 | { 1632 | "text": "113" 1633 | }, 1634 | { 1635 | "text": "110" 1636 | }, 1637 | { 1638 | "text": "122" 1639 | } 1640 | ], 1641 | [ 1642 | { 1643 | "text": "最大扭矩(N·m)" 1644 | }, 1645 | { 1646 | "text": "150" 1647 | }, 1648 | { 1649 | "text": "141" 1650 | }, 1651 | { 1652 | "text": "150" 1653 | }, 1654 | { 1655 | "text": "158" 1656 | } 1657 | ], 1658 | [ 1659 | { 1660 | "text": "变速箱" 1661 | }, 1662 | { 1663 | "text": "6挡手自一体" 1664 | }, 1665 | { 1666 | "text": "6挡手自一体" 1667 | }, 1668 | { 1669 | "text": "6挡自动" 1670 | }, 1671 | { 1672 | "text": "6挡手自一体" 1673 | } 1674 | ], 1675 | [ 1676 | { 1677 | "text": "车身类型" 1678 | }, 1679 | { 1680 | "text": "4门5座三厢车" 1681 | }, 1682 | { 1683 | "text": "4门5座三厢车" 1684 | }, 1685 | { 1686 | "text": "4门5座三厢车" 1687 | }, 1688 | { 1689 | "text": "4门5座三厢车" 1690 | } 1691 | ], 1692 | [ 1693 | { 1694 | "text": "查看全部参数", 1695 | "markups": [ 1696 | { 1697 | "tag": "a", 1698 | "start": 0, 1699 | "end": 6, 1700 | "source": "http://m.pcauto.com.cn/auto/pk/m75076-m71818-m73871-m36183.html", 1701 | "width": 0, 1702 | "height": 0 1703 | } 1704 | ] 1705 | } 1706 | ] 1707 | ], 1708 | "show": true 1709 | } 1710 | }, 1711 | { 1712 | "id": "83b6", 1713 | "type": 1, 1714 | "image": { 1715 | "width": 180, 1716 | "height": 135, 1717 | "source": "http://img.qingmang.mobi/image/orion/a0bcf90b6df6b8605d7b48f7c931b6f8_180_135.jpeg", 1718 | "inline": false 1719 | } 1720 | }, 1721 | { 1722 | "id": "d982", 1723 | "type": 0, 1724 | "text": { 1725 | "text": "全新爱丽舍", 1726 | "markups": [ 1727 | { 1728 | "tag": "a", 1729 | "start": 0, 1730 | "end": 5, 1731 | "source": "http://m.pcauto.com.cn/auto/sg3187/#ad=5409", 1732 | "width": 0, 1733 | "height": 0 1734 | } 1735 | ] 1736 | } 1737 | }, 1738 | { 1739 | "id": "3bf3", 1740 | "type": 0, 1741 | "text": { 1742 | "text": "官方价:8.38-12.08 万", 1743 | "markups": [ 1744 | { 1745 | "tag": "a", 1746 | "start": 0, 1747 | "end": 16, 1748 | "source": "http://m.pcauto.com.cn/auto/sg3187/#ad=5409", 1749 | "width": 0, 1750 | "height": 0 1751 | } 1752 | ] 1753 | } 1754 | }, 1755 | { 1756 | "id": "4984", 1757 | "type": 0, 1758 | "text": { 1759 | "text": "分期购车 询底价", 1760 | "markups": [ 1761 | { 1762 | "tag": "a", 1763 | "start": 0, 1764 | "end": 4, 1765 | "source": "http://m.jr.pcauto.com.cn/planInfo/sg3187/#ad=5413", 1766 | "width": 0, 1767 | "height": 0 1768 | }, 1769 | { 1770 | "tag": "a", 1771 | "start": 5, 1772 | "end": 8, 1773 | "source": "http://m.pcauto.com.cn/auto/ask-sg3187.html#ad=4228", 1774 | "width": 0, 1775 | "height": 0 1776 | } 1777 | ] 1778 | } 1779 | } 1780 | ] -------------------------------------------------------------------------------- /raml/samples/wx_markup_and_li.raml: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "2740", 4 | "type": 1, 5 | "image": { 6 | "width": 640, 7 | "height": 257, 8 | "source": "http://img.qingmang.mobi/image/orion/bb3d1b7c4b7b5c7e2c84cd81f5b816c8_640_257.jpeg", 9 | "inline": false 10 | } 11 | }, 12 | { 13 | "id": "a016", 14 | "type": 0, 15 | "text": { 16 | "text": "来源:吃惑" 17 | } 18 | }, 19 | { 20 | "id": "6418", 21 | "type": 0, 22 | "text": { 23 | "text": "微信公众号:eatwonder" 24 | } 25 | }, 26 | { 27 | "id": "c1a5", 28 | "type": 0, 29 | "text": { 30 | "text": "作者:Jaiden" 31 | } 32 | }, 33 | { 34 | "id": "9db1", 35 | "type": 0, 36 | "text": { 37 | "text": "本文经授权发布,如需转载请联系原作者" 38 | } 39 | }, 40 | { 41 | "id": "b2b3", 42 | "type": 0, 43 | "text": { 44 | "text": "读完这篇,你的这些问题都会有答案:", 45 | "markups": [ 46 | { 47 | "tag": "strong", 48 | "start": 0, 49 | "end": 17, 50 | "width": 0, 51 | "height": 0 52 | } 53 | ] 54 | } 55 | }, 56 | { 57 | "id": "bfa8", 58 | "type": 0, 59 | "text": { 60 | "text": "我身上的肥肉从哪儿来?" 61 | }, 62 | "li": { 63 | "type": "ul", 64 | "level": 1, 65 | "order": 1 66 | }, 67 | "blockquote": 0 68 | }, 69 | { 70 | "id": "6aa7", 71 | "type": 0, 72 | "text": { 73 | "text": "热量是被消耗还是被储存,由什么决定?" 74 | }, 75 | "li": { 76 | "type": "ul", 77 | "level": 1, 78 | "order": 2 79 | }, 80 | "blockquote": 0 81 | }, 82 | { 83 | "id": "9606", 84 | "type": 0, 85 | "text": { 86 | "text": "吃肉和吃饭,哪个更容易胖?为什么?" 87 | }, 88 | "li": { 89 | "type": "ul", 90 | "level": 1, 91 | "order": 3 92 | }, 93 | "blockquote": 0 94 | }, 95 | { 96 | "id": "a688", 97 | "type": 0, 98 | "text": { 99 | "text": "为什么我会越来越胖?" 100 | }, 101 | "li": { 102 | "type": "ul", 103 | "level": 1, 104 | "order": 4 105 | }, 106 | "blockquote": 0 107 | }, 108 | { 109 | "id": "45ac", 110 | "type": 0, 111 | "text": { 112 | "text": "为什么我一不小心就吃多了?" 113 | }, 114 | "li": { 115 | "type": "ul", 116 | "level": 1, 117 | "order": 5 118 | }, 119 | "blockquote": 0 120 | }, 121 | { 122 | "id": "b073", 123 | "type": 0, 124 | "text": { 125 | "text": "喝酒会令人发胖么?" 126 | }, 127 | "li": { 128 | "type": "ul", 129 | "level": 1, 130 | "order": 6 131 | }, 132 | "blockquote": 0 133 | }, 134 | { 135 | "id": "c25b", 136 | "type": 0, 137 | "text": { 138 | "text": "为什么果汁比可口可乐更容易令人发胖?" 139 | }, 140 | "li": { 141 | "type": "ul", 142 | "level": 1, 143 | "order": 7 144 | }, 145 | "blockquote": 0 146 | }, 147 | { 148 | "id": "058f", 149 | "type": 0, 150 | "text": { 151 | "text": "为什么我怎么都瘦不下来?" 152 | }, 153 | "li": { 154 | "type": "ul", 155 | "level": 1, 156 | "order": 8 157 | }, 158 | "blockquote": 0 159 | }, 160 | { 161 | "id": "343f", 162 | "type": 0, 163 | "text": { 164 | "text": "为什么压力大的时候容易胖?" 165 | }, 166 | "li": { 167 | "type": "ul", 168 | "level": 1, 169 | "order": 9 170 | }, 171 | "blockquote": 0 172 | }, 173 | { 174 | "id": "cb67", 175 | "type": 0, 176 | "text": { 177 | "text": "什么?我不是饿了,是渴了?" 178 | }, 179 | "li": { 180 | "type": "ul", 181 | "level": 1, 182 | "order": 10 183 | }, 184 | "blockquote": 0 185 | }, 186 | { 187 | "id": "47b4", 188 | "type": 0, 189 | "text": { 190 | "text": "身上的肥肉从哪儿来?" 191 | } 192 | }, 193 | { 194 | "id": "8269", 195 | "type": 0, 196 | "text": { 197 | "text": "当然是从食物来。食物是人体的热量来源。" 198 | } 199 | }, 200 | { 201 | "id": "a58d", 202 | "type": 1, 203 | "image": { 204 | "width": 640, 205 | "height": 215, 206 | "source": "http://img.qingmang.mobi/image/orion/a3edda3688b5ee911377ca59e9060283_640_215.jpeg", 207 | "inline": false 208 | } 209 | }, 210 | { 211 | "id": "a183", 212 | "type": 0, 213 | "text": { 214 | "text": "如果我们算一算4两白米饭和1两五花肉的热量(卡路里),它们几乎是一样的。", 215 | "markups": [ 216 | { 217 | "tag": "strong", 218 | "start": 7, 219 | "end": 12, 220 | "width": 0, 221 | "height": 0 222 | }, 223 | { 224 | "tag": "strong", 225 | "start": 13, 226 | "end": 18, 227 | "width": 0, 228 | "height": 0 229 | } 230 | ] 231 | } 232 | }, 233 | { 234 | "id": "6d2a", 235 | "type": 1, 236 | "image": { 237 | "width": 640, 238 | "height": 214, 239 | "source": "http://img.qingmang.mobi/image/orion/2d7ce9561b972adce7b1315d575d275b_640_214.jpeg", 240 | "inline": false 241 | } 242 | }, 243 | { 244 | "id": "e4c8", 245 | "type": 0, 246 | "text": { 247 | "text": "不一样的,是它们被人体利用的方式:被消耗,还是被储存?", 248 | "markups": [ 249 | { 250 | "tag": "strong", 251 | "start": 17, 252 | "end": 27, 253 | "width": 0, 254 | "height": 0 255 | } 256 | ] 257 | } 258 | }, 259 | { 260 | "id": "50fb", 261 | "type": 1, 262 | "image": { 263 | "width": 640, 264 | "height": 331, 265 | "source": "http://img.qingmang.mobi/image/orion/49d3b3819421201a92d8267d9313f830_640_331.jpeg", 266 | "inline": false 267 | } 268 | }, 269 | { 270 | "id": "eebd", 271 | "type": 0, 272 | "text": { 273 | "text": "是什么决定了热量被消耗还是被储存?是卡路里的多少吗?要回答这个问题,我们需要了解食物是如何被人体吸收的。" 274 | } 275 | }, 276 | { 277 | "id": "108b", 278 | "type": 0, 279 | "text": { 280 | "text": "食物代谢的过程" 281 | } 282 | }, 283 | { 284 | "id": "46db", 285 | "type": 0, 286 | "text": { 287 | "text": "继续五花肉和白米饭的故事…" 288 | } 289 | }, 290 | { 291 | "id": "27d5", 292 | "type": 0, 293 | "text": { 294 | "text": "五花肉的主要成份是蛋白质和脂肪。经过胃和小肠的消化后,脂肪被分解成脂肪酸,蛋白质被分解成氨基酸。白米饭的主要成份是碳水化合物,经过消化后,它成为单糖(葡萄糖为主)。", 295 | "markups": [ 296 | { 297 | "tag": "strong", 298 | "start": 9, 299 | "end": 15, 300 | "width": 0, 301 | "height": 0 302 | }, 303 | { 304 | "tag": "strong", 305 | "start": 33, 306 | "end": 36, 307 | "width": 0, 308 | "height": 0 309 | }, 310 | { 311 | "tag": "strong", 312 | "start": 44, 313 | "end": 47, 314 | "width": 0, 315 | "height": 0 316 | }, 317 | { 318 | "tag": "strong", 319 | "start": 57, 320 | "end": 62, 321 | "width": 0, 322 | "height": 0 323 | }, 324 | { 325 | "tag": "strong", 326 | "start": 72, 327 | "end": 74, 328 | "width": 0, 329 | "height": 0 330 | } 331 | ] 332 | } 333 | }, 334 | { 335 | "id": "be46", 336 | "type": 1, 337 | "image": { 338 | "width": 640, 339 | "height": 895, 340 | "source": "http://img.qingmang.mobi/image/orion/cb8ad52e798bde2c57b8488abef032e3_640_895.jpeg", 341 | "inline": false 342 | } 343 | }, 344 | { 345 | "id": "6eae", 346 | "type": 0, 347 | "text": { 348 | "text": "脂肪酸代谢" 349 | } 350 | }, 351 | { 352 | "id": "4bf2", 353 | "type": 0, 354 | "text": { 355 | "text": "当人体需要能量的时候,脂肪酸会被进一步分解,提供能量。多余的脂肪酸在胰岛素的作用下,被合成甘油三酯,储存在肝脏细胞和脂肪细胞里,也就是我们常说的身上的脂肪。", 356 | "markups": [ 357 | { 358 | "tag": "strong", 359 | "start": 34, 360 | "end": 37, 361 | "width": 0, 362 | "height": 0 363 | }, 364 | { 365 | "tag": "strong", 366 | "start": 45, 367 | "end": 49, 368 | "width": 0, 369 | "height": 0 370 | }, 371 | { 372 | "tag": "strong", 373 | "start": 53, 374 | "end": 62, 375 | "width": 0, 376 | "height": 0 377 | } 378 | ] 379 | } 380 | }, 381 | { 382 | "id": "f5cf", 383 | "type": 1, 384 | "image": { 385 | "width": 640, 386 | "height": 817, 387 | "source": "http://img.qingmang.mobi/image/orion/f60eb2564e5f191ee97fb21b1611f4ec_640_817.jpeg", 388 | "inline": false 389 | } 390 | }, 391 | { 392 | "id": "96b2", 393 | "type": 0, 394 | "text": { 395 | "text": "氨基酸代谢" 396 | } 397 | }, 398 | { 399 | "id": "058a", 400 | "type": 0, 401 | "text": { 402 | "text": "氨基酸重新组合后,形成新的蛋白质,但它不能直接提供能量。只有在身体能量储备非常低的时候(例如饥荒)或者在紧急情况下(例如被老虎追),氨基酸才会被转化成葡萄糖,间接地提供能量。", 403 | "markups": [ 404 | { 405 | "tag": "strong", 406 | "start": 0, 407 | "end": 3, 408 | "width": 0, 409 | "height": 0 410 | }, 411 | { 412 | "tag": "strong", 413 | "start": 19, 414 | "end": 27, 415 | "width": 0, 416 | "height": 0 417 | } 418 | ] 419 | } 420 | }, 421 | { 422 | "id": "dfaa", 423 | "type": 1, 424 | "image": { 425 | "width": 640, 426 | "height": 758, 427 | "source": "http://img.qingmang.mobi/image/orion/afe734acc57a2f453d7b58118fd77419_640_758.jpeg", 428 | "inline": false 429 | } 430 | }, 431 | { 432 | "id": "035c", 433 | "type": 0, 434 | "text": { 435 | "text": "-减脂误区-", 436 | "markups": [ 437 | { 438 | "tag": "strong", 439 | "start": 0, 440 | "end": 6, 441 | "width": 0, 442 | "height": 0 443 | } 444 | ] 445 | } 446 | }, 447 | { 448 | "id": "288e", 449 | "type": 0, 450 | "text": { 451 | "text": "还记得那些鸡胸肉+水煮菜的日子吗?不少减脂营采用低脂低碳高蛋白的饮食结构,加上大量有氧运动,使人在短时间内体重爆减。实际上,这种减肥方式与节食没有本质的区别。因为人体的主要热量来源是碳水化合物和油脂,当两者都严重缺乏时,身体必须通过分解蛋白质产生热量,这种状态下人的荷尔蒙会被打乱,引起各种不良症状(闭经、暴食症、抑郁...)。你的身体不能区分「节食」与「饥荒」,也不能区分「运动过量」与「被老虎追」。当你在这种状态下减脂的时候,不但非常难受,而且身体需要“牺牲”「建筑材料」来维持体能,注定了是不可持续的方法。", 452 | "markups": [ 453 | { 454 | "tag": "strong", 455 | "start": 5, 456 | "end": 12, 457 | "width": 0, 458 | "height": 0 459 | }, 460 | { 461 | "tag": "strong", 462 | "start": 24, 463 | "end": 31, 464 | "width": 0, 465 | "height": 0 466 | }, 467 | { 468 | "tag": "strong", 469 | "start": 39, 470 | "end": 45, 471 | "width": 0, 472 | "height": 0 473 | }, 474 | { 475 | "tag": "strong", 476 | "start": 62, 477 | "end": 78, 478 | "width": 0, 479 | "height": 0 480 | }, 481 | { 482 | "tag": "strong", 483 | "start": 116, 484 | "end": 121, 485 | "width": 0, 486 | "height": 0 487 | } 488 | ] 489 | } 490 | }, 491 | { 492 | "id": "0b8b", 493 | "type": 0, 494 | "text": { 495 | "text": "葡萄糖代谢" 496 | } 497 | }, 498 | { 499 | "id": "5aff", 500 | "type": 0, 501 | "text": { 502 | "text": "葡萄糖是人体能量的首选来源。当细胞需要能量的时候,葡萄糖会立即被氧化。多余的葡萄糖转化为糖原,在肝脏细胞和肌肉细胞储存起来。如果这些细胞的糖原储备满了,肝脏细胞进一步将葡萄糖转化为甘油三酯,在脂肪细胞里储存起来。", 503 | "markups": [ 504 | { 505 | "tag": "strong", 506 | "start": 0, 507 | "end": 3, 508 | "width": 0, 509 | "height": 0 510 | }, 511 | { 512 | "tag": "strong", 513 | "start": 19, 514 | "end": 21, 515 | "width": 0, 516 | "height": 0 517 | }, 518 | { 519 | "tag": "strong", 520 | "start": 44, 521 | "end": 46, 522 | "width": 0, 523 | "height": 0 524 | }, 525 | { 526 | "tag": "strong", 527 | "start": 48, 528 | "end": 52, 529 | "width": 0, 530 | "height": 0 531 | }, 532 | { 533 | "tag": "strong", 534 | "start": 53, 535 | "end": 57, 536 | "width": 0, 537 | "height": 0 538 | }, 539 | { 540 | "tag": "strong", 541 | "start": 90, 542 | "end": 94, 543 | "width": 0, 544 | "height": 0 545 | }, 546 | { 547 | "tag": "strong", 548 | "start": 96, 549 | "end": 100, 550 | "width": 0, 551 | "height": 0 552 | } 553 | ] 554 | } 555 | }, 556 | { 557 | "id": "8564", 558 | "type": 1, 559 | "image": { 560 | "width": 640, 561 | "height": 707, 562 | "source": "http://img.qingmang.mobi/image/orion/bb50ffa3e80003a5ded5c918553661a5_640_707.jpeg", 563 | "inline": false 564 | } 565 | }, 566 | { 567 | "id": "20c9", 568 | "type": 0, 569 | "text": { 570 | "text": "因此,脂肪是人体储存能量的主要方式。脂肪吃多了会在身体里产生脂肪,碳水化合物吃多了也会在身体里产生脂肪。", 571 | "markups": [ 572 | { 573 | "tag": "strong", 574 | "start": 18, 575 | "end": 52, 576 | "width": 0, 577 | "height": 0 578 | } 579 | ] 580 | } 581 | }, 582 | { 583 | "id": "21ce", 584 | "type": 1, 585 | "image": { 586 | "width": 640, 587 | "height": 390, 588 | "source": "http://img.qingmang.mobi/image/orion/cdcb335789d522183200d1da0f56c87e_640_390.jpeg", 589 | "inline": false 590 | } 591 | }, 592 | { 593 | "id": "5b1e", 594 | "type": 0, 595 | "text": { 596 | "text": "除了量之外,不管是脂肪酸还是葡萄糖,要转变成脂肪,它们离不开这把万能的“钥匙”:胰岛素。可以说,", 597 | "markups": [ 598 | { 599 | "tag": "strong", 600 | "start": 40, 601 | "end": 43, 602 | "width": 0, 603 | "height": 0 604 | } 605 | ] 606 | } 607 | }, 608 | { 609 | "id": "c115", 610 | "type": 0, 611 | "text": { 612 | "text": "没有胰岛素,就没有能量的储存,也不会有脂肪。", 613 | "markups": [ 614 | { 615 | "tag": "strong", 616 | "start": 0, 617 | "end": 22, 618 | "width": 0, 619 | "height": 0 620 | } 621 | ] 622 | } 623 | }, 624 | { 625 | "id": "67b2", 626 | "type": 1, 627 | "image": { 628 | "width": 640, 629 | "height": 215, 630 | "source": "http://img.qingmang.mobi/image/orion/fe6bc7dffdb8e442073dd2e9f1485935_640_215.jpeg", 631 | "inline": false 632 | } 633 | }, 634 | { 635 | "id": "9161", 636 | "type": 0, 637 | "text": { 638 | "text": "什么是胰岛素?" 639 | } 640 | }, 641 | { 642 | "id": "3f24", 643 | "type": 0, 644 | "text": { 645 | "text": "胰岛素(insulin)是胰腺的β细胞产生的一种激素。β细胞对血液的葡萄糖浓度最敏感,当你进食后,随着血液葡萄糖浓度的升高,胰腺会释放胰岛素。", 646 | "markups": [ 647 | { 648 | "tag": "strong", 649 | "start": 62, 650 | "end": 64, 651 | "width": 0, 652 | "height": 0 653 | }, 654 | { 655 | "tag": "strong", 656 | "start": 67, 657 | "end": 70, 658 | "width": 0, 659 | "height": 0 660 | } 661 | ] 662 | } 663 | }, 664 | { 665 | "id": "6bfb", 666 | "type": 1, 667 | "image": { 668 | "width": 640, 669 | "height": 762, 670 | "source": "http://img.qingmang.mobi/image/orion/417c3b8ce1480b54f125c2e7aae52a47_640_762.jpeg", 671 | "inline": false 672 | } 673 | }, 674 | { 675 | "id": "5274", 676 | "type": 0, 677 | "text": { 678 | "text": "胰岛素的作用是促进脂肪细胞、肝脏细胞和肌肉细胞对葡萄糖的吸收。", 679 | "markups": [ 680 | { 681 | "tag": "strong", 682 | "start": 7, 683 | "end": 30, 684 | "width": 0, 685 | "height": 0 686 | } 687 | ] 688 | } 689 | }, 690 | { 691 | "id": "df7f", 692 | "type": 1, 693 | "image": { 694 | "width": 640, 695 | "height": 701, 696 | "source": "http://img.qingmang.mobi/image/orion/3bd26a4f8ff63d4effc0eee54000b3bd_640_701.jpeg", 697 | "inline": false 698 | } 699 | }, 700 | { 701 | "id": "b2cd", 702 | "type": 0, 703 | "text": { 704 | "text": "葡萄糖被细胞吸收后,血液的葡萄糖浓度就会降低。因此胰岛素的任务除了储存能量,还有降低血糖。", 705 | "markups": [ 706 | { 707 | "tag": "strong", 708 | "start": 33, 709 | "end": 37, 710 | "width": 0, 711 | "height": 0 712 | }, 713 | { 714 | "tag": "strong", 715 | "start": 40, 716 | "end": 44, 717 | "width": 0, 718 | "height": 0 719 | } 720 | ] 721 | } 722 | }, 723 | { 724 | "id": "e8aa", 725 | "type": 0, 726 | "text": { 727 | "text": "吃肉和吃饭,哪个容易胖?", 728 | "linetype": "big" 729 | } 730 | }, 731 | { 732 | "id": "9934", 733 | "type": 0, 734 | "text": { 735 | "text": "血液葡萄糖的浓度(血糖)在一天里是不断变化的。每次进食后,血糖浓度会升高,然后在胰岛素的作用下,血糖浓度会慢慢回落。", 736 | "markups": [ 737 | { 738 | "tag": "strong", 739 | "start": 40, 740 | "end": 43, 741 | "width": 0, 742 | "height": 0 743 | } 744 | ] 745 | } 746 | }, 747 | { 748 | "id": "96e7", 749 | "type": 1, 750 | "image": { 751 | "width": 640, 752 | "height": 397, 753 | "source": "http://img.qingmang.mobi/image/orion/9912ee8a68817476afa5b1ae50db54a0_640_397.jpeg", 754 | "inline": false 755 | } 756 | }, 757 | { 758 | "id": "0ad1", 759 | "type": 0, 760 | "text": { 761 | "text": "食物中只有碳水化合物会直接转变成葡萄糖,因此,如果这一餐你只吃肉,哪怕是肥肉,血糖是几乎没有变化的。" 762 | } 763 | }, 764 | { 765 | "id": "4f09", 766 | "type": 1, 767 | "image": { 768 | "width": 640, 769 | "height": 173, 770 | "source": "http://img.qingmang.mobi/image/orion/e92f16aae514e2db1474af9dd5ccf9af_640_173.jpeg", 771 | "inline": false 772 | } 773 | }, 774 | { 775 | "id": "6209", 776 | "type": 0, 777 | "text": { 778 | "text": "可是,一碗白米饭却不一样。因为米饭里大部分是淀粉,淀粉消化后就是葡萄糖,因此一碗白米饭可以使饭后的血糖冲得很高,形成「血糖过山车」。", 779 | "markups": [ 780 | { 781 | "tag": "strong", 782 | "start": 25, 783 | "end": 35, 784 | "width": 0, 785 | "height": 0 786 | }, 787 | { 788 | "tag": "strong", 789 | "start": 58, 790 | "end": 65, 791 | "width": 0, 792 | "height": 0 793 | } 794 | ] 795 | } 796 | }, 797 | { 798 | "id": "221e", 799 | "type": 1, 800 | "image": { 801 | "width": 640, 802 | "height": 360, 803 | "source": "http://img.qingmang.mobi/image/orion/3f15c21252faeca4c9bbbd7c0693ac17_640_360.jpeg", 804 | "inline": false 805 | } 806 | }, 807 | { 808 | "id": "3f30", 809 | "type": 0, 810 | "text": { 811 | "text": "-糖的误区-", 812 | "markups": [ 813 | { 814 | "tag": "strong", 815 | "start": 0, 816 | "end": 6, 817 | "width": 0, 818 | "height": 0 819 | } 820 | ] 821 | } 822 | }, 823 | { 824 | "id": "5dda", 825 | "type": 0, 826 | "text": { 827 | "text": "一般人以为添加了糖的食物才有糖,实际上,淀粉被人体消化后也是糖。3两白米饭产生的糖比一罐240ml的可口可乐还要多!", 828 | "markups": [ 829 | { 830 | "tag": "strong", 831 | "start": 32, 832 | "end": 37, 833 | "width": 0, 834 | "height": 0 835 | }, 836 | { 837 | "tag": "strong", 838 | "start": 37, 839 | "end": 42, 840 | "width": 0, 841 | "height": 0 842 | }, 843 | { 844 | "tag": "strong", 845 | "start": 42, 846 | "end": 54, 847 | "width": 0, 848 | "height": 0 849 | }, 850 | { 851 | "tag": "strong", 852 | "start": 54, 853 | "end": 58, 854 | "width": 0, 855 | "height": 0 856 | } 857 | ] 858 | } 859 | }, 860 | { 861 | "id": "a6dc", 862 | "type": 0, 863 | "text": { 864 | "text": "会引起「血糖过山车」的食物有这些。它们的共同特点是糖或者淀粉的含量高。", 865 | "markups": [ 866 | { 867 | "tag": "strong", 868 | "start": 25, 869 | "end": 34, 870 | "width": 0, 871 | "height": 0 872 | } 873 | ] 874 | } 875 | }, 876 | { 877 | "id": "c905", 878 | "type": 1, 879 | "image": { 880 | "width": 640, 881 | "height": 750, 882 | "source": "http://img.qingmang.mobi/image/orion/372a13ee4e83491e65de5c5b984d0130_640_750.jpeg", 883 | "inline": false 884 | } 885 | }, 886 | { 887 | "id": "77d5", 888 | "type": 0, 889 | "text": { 890 | "text": "这些食物转化成葡萄糖的速度相当快,在短时间内引起血糖的大幅度上升,使胰腺处于“恐慌”状态,释放过量的胰岛素。", 891 | "markups": [ 892 | { 893 | "tag": "strong", 894 | "start": 47, 895 | "end": 53, 896 | "width": 0, 897 | "height": 0 898 | } 899 | ] 900 | } 901 | }, 902 | { 903 | "id": "51c1", 904 | "type": 1, 905 | "image": { 906 | "width": 640, 907 | "height": 640, 908 | "source": "http://img.qingmang.mobi/image/orion/1215c946afc352c8518d55856c1a6773_640_640.jpeg", 909 | "inline": false 910 | } 911 | }, 912 | { 913 | "id": "27d4", 914 | "type": 0, 915 | "text": { 916 | "text": "胰岛素是一个“储存激素”。胰岛素释放得越多,身体越容易屯积脂肪。", 917 | "markups": [ 918 | { 919 | "tag": "strong", 920 | "start": 6, 921 | "end": 12, 922 | "width": 0, 923 | "height": 0 924 | }, 925 | { 926 | "tag": "strong", 927 | "start": 13, 928 | "end": 32, 929 | "width": 0, 930 | "height": 0 931 | } 932 | ] 933 | } 934 | }, 935 | { 936 | "id": "b2c9", 937 | "type": 1, 938 | "image": { 939 | "width": 640, 940 | "height": 432, 941 | "source": "http://img.qingmang.mobi/image/orion/c5d50b508cacf50c7170d543b6bc4ce7_640_432.jpeg", 942 | "inline": false 943 | } 944 | }, 945 | { 946 | "id": "eb42", 947 | "type": 0, 948 | "text": { 949 | "text": "当囤积脂肪的时间 > 燃烧脂肪的时间时,体内的脂肪越积越多,人就变得越来越胖。" 950 | } 951 | }, 952 | { 953 | "id": "d7b9", 954 | "type": 1, 955 | "image": { 956 | "width": 640, 957 | "height": 227, 958 | "source": "http://img.qingmang.mobi/image/orion/2f636b30de006ecb0e83eeb91b062147_640_227.jpeg", 959 | "inline": false 960 | } 961 | }, 962 | { 963 | "id": "e30b", 964 | "type": 0, 965 | "text": { 966 | "text": "恶性循环的开始" 967 | } 968 | }, 969 | { 970 | "id": "5c4b", 971 | "type": 0, 972 | "text": { 973 | "text": "细胞接受葡萄糖的能力是有限的。如果血液中胰岛素长期高居不下,细胞对胰岛素的敏感性会降低,形成胰岛素阻抗。", 974 | "markups": [ 975 | { 976 | "tag": "strong", 977 | "start": 46, 978 | "end": 51, 979 | "width": 0, 980 | "height": 0 981 | } 982 | ] 983 | } 984 | }, 985 | { 986 | "id": "900d", 987 | "type": 1, 988 | "image": { 989 | "width": 640, 990 | "height": 659, 991 | "source": "http://img.qingmang.mobi/image/orion/0f98c1fb63c599275c173f47e1e52dd0_640_659.jpeg", 992 | "inline": false 993 | } 994 | }, 995 | { 996 | "id": "7b27", 997 | "type": 0, 998 | "text": { 999 | "text": "一旦胰岛素阻抗形成了,胰腺需要分泌更多的胰岛素才能把血糖降下来,而更多的胰岛素会进一步降低细胞的胰岛素敏感性,令胰岛素阻抗更加严重。", 1000 | "markups": [ 1001 | { 1002 | "tag": "strong", 1003 | "start": 33, 1004 | "end": 66, 1005 | "width": 0, 1006 | "height": 0 1007 | } 1008 | ] 1009 | } 1010 | }, 1011 | { 1012 | "id": "839f", 1013 | "type": 1, 1014 | "image": { 1015 | "width": 640, 1016 | "height": 560, 1017 | "source": "http://img.qingmang.mobi/image/orion/0a61a1f0f6004da0dbb939412a9dc3cb_640_560.jpeg", 1018 | "inline": false 1019 | } 1020 | }, 1021 | { 1022 | "id": "5c22", 1023 | "type": 0, 1024 | "text": { 1025 | "text": "胰岛素阻抗是人们日渐肥胖的主要原因。", 1026 | "markups": [ 1027 | { 1028 | "tag": "strong", 1029 | "start": 8, 1030 | "end": 12, 1031 | "width": 0, 1032 | "height": 0 1033 | } 1034 | ] 1035 | } 1036 | }, 1037 | { 1038 | "id": "bad5", 1039 | "type": 1, 1040 | "image": { 1041 | "width": 640, 1042 | "height": 205, 1043 | "source": "http://img.qingmang.mobi/image/orion/81510a6645d44cbf7b0d8794ecc2f007_640_205.jpeg", 1044 | "inline": false 1045 | } 1046 | }, 1047 | { 1048 | "id": "bd50", 1049 | "type": 0, 1050 | "text": { 1051 | "text": "TIPS :腰围/臀围比例超过0.85(女)和1.0(男)是胰岛素阻抗的表征之一。", 1052 | "markups": [ 1053 | { 1054 | "tag": "strong", 1055 | "start": 0, 1056 | "end": 6, 1057 | "width": 0, 1058 | "height": 0 1059 | } 1060 | ] 1061 | } 1062 | }, 1063 | { 1064 | "id": "c200", 1065 | "type": 1, 1066 | "image": { 1067 | "width": 640, 1068 | "height": 386, 1069 | "source": "http://img.qingmang.mobi/image/orion/5ad75c10f6ab6aefbb807184476ed1a7_640_386.jpeg", 1070 | "inline": false 1071 | } 1072 | }, 1073 | { 1074 | "id": "5f71", 1075 | "type": 0, 1076 | "text": { 1077 | "text": "我为什么会吃多了?" 1078 | } 1079 | }, 1080 | { 1081 | "id": "58ab", 1082 | "type": 0, 1083 | "text": { 1084 | "text": "食欲的控制对许多人来说是一个大问题。可是如果我告诉你,减肥不是意志和行为能够决定的,你相信吗?", 1085 | "markups": [ 1086 | { 1087 | "tag": "strong", 1088 | "start": 27, 1089 | "end": 41, 1090 | "width": 0, 1091 | "height": 0 1092 | } 1093 | ] 1094 | } 1095 | }, 1096 | { 1097 | "id": "8cc4", 1098 | "type": 0, 1099 | "text": { 1100 | "text": "反应性低血糖" 1101 | } 1102 | }, 1103 | { 1104 | "id": "6696", 1105 | "type": 0, 1106 | "text": { 1107 | "text": "还是以五花肉和白米饭做例子。如果你光吃一碗白米饭,过量的胰岛素分泌可能导致餐后血糖降得太快太低,出现“反应性低血糖”。", 1108 | "markups": [ 1109 | { 1110 | "tag": "strong", 1111 | "start": 50, 1112 | "end": 58, 1113 | "width": 0, 1114 | "height": 0 1115 | } 1116 | ] 1117 | } 1118 | }, 1119 | { 1120 | "id": "19b9", 1121 | "type": 1, 1122 | "image": { 1123 | "width": 640, 1124 | "height": 415, 1125 | "source": "http://img.qingmang.mobi/image/orion/2ce1d56cb4c9c7e2473e04659802e0f1_640_415.jpeg", 1126 | "inline": false 1127 | } 1128 | }, 1129 | { 1130 | "id": "7146", 1131 | "type": 0, 1132 | "text": { 1133 | "text": "当血糖降得过低时,大脑得不到足够的葡萄糖,人会突然感觉心慌,甚至出现冒冷汗、发抖、烦躁不安的现象。这时候,你会迫不及待地找零食吃。" 1134 | } 1135 | }, 1136 | { 1137 | "id": "8738", 1138 | "type": 1, 1139 | "image": { 1140 | "width": 640, 1141 | "height": 346, 1142 | "source": "http://img.qingmang.mobi/image/orion/af9f0a7c3dc357982a0eb7f3e7476124_640_346.jpeg", 1143 | "inline": false 1144 | } 1145 | }, 1146 | { 1147 | "id": "33dc", 1148 | "type": 0, 1149 | "text": { 1150 | "text": "吃零食的习惯打断了两餐之间消耗糖原的模式,使得消耗热量的机会小于储存能量的机会。" 1151 | } 1152 | }, 1153 | { 1154 | "id": "43d4", 1155 | "type": 1, 1156 | "image": { 1157 | "width": 640, 1158 | "height": 365, 1159 | "source": "http://img.qingmang.mobi/image/orion/52ba1e10299403a6c952a53c890ac6d7_640_365.jpeg", 1160 | "inline": false 1161 | } 1162 | }, 1163 | { 1164 | "id": "5bed", 1165 | "type": 0, 1166 | "text": { 1167 | "text": "-血糖危机-", 1168 | "markups": [ 1169 | { 1170 | "tag": "strong", 1171 | "start": 0, 1172 | "end": 6, 1173 | "width": 0, 1174 | "height": 0 1175 | } 1176 | ] 1177 | } 1178 | }, 1179 | { 1180 | "id": "9e29", 1181 | "type": 0, 1182 | "text": { 1183 | "text": "如果你错过了一餐会情绪暴躁或者头晕,平时容易不安或者紧张,有记忆问题,或者视野模糊,这些都是低血糖的症状。当这种情况出现时,提升血糖成了人体的紧急措施,控制食欲就已经不是意志能够决定的事了。因此,避免血糖的大起大落对预防肥胖非常重要。" 1184 | } 1185 | }, 1186 | { 1187 | "id": "29f3", 1188 | "type": 0, 1189 | "text": { 1190 | "text": "瘦素阻抗" 1191 | } 1192 | }, 1193 | { 1194 | "id": "778a", 1195 | "type": 0, 1196 | "text": { 1197 | "text": "瘦素(Leptin),被称为“饱腹感激素”,是脂肪细胞产生的。瘦素通过血液循环,到达大脑的下丘脑(Hypothalamus),告诉它贮存在脂肪里的能量已经足够了。在瘦素的调节下,食欲会得到控制,人会感觉精力充沛,有幸福感。", 1198 | "markups": [ 1199 | { 1200 | "tag": "strong", 1201 | "start": 0, 1202 | "end": 2, 1203 | "width": 0, 1204 | "height": 0 1205 | }, 1206 | { 1207 | "tag": "strong", 1208 | "start": 81, 1209 | "end": 111, 1210 | "width": 0, 1211 | "height": 0 1212 | } 1213 | ] 1214 | } 1215 | }, 1216 | { 1217 | "id": "b0c4", 1218 | "type": 1, 1219 | "image": { 1220 | "width": 640, 1221 | "height": 575, 1222 | "source": "http://img.qingmang.mobi/image/orion/ca2f81bac81e3cc1fb85dc69ebffd414_640_575.jpeg", 1223 | "inline": false 1224 | } 1225 | }, 1226 | { 1227 | "id": "4b6e", 1228 | "type": 0, 1229 | "text": { 1230 | "text": "可是,如果胰岛素长期高居不下,它会阻碍大脑对瘦素的接收,导致“瘦素阻抗”。下丘脑感应不到足够的瘦素,以为身体处于饥饿状态,会想方设法让身体的其它部位保存能量,结果是这个人食欲大增,却没有精力运动。", 1231 | "markups": [ 1232 | { 1233 | "tag": "strong", 1234 | "start": 5, 1235 | "end": 14, 1236 | "width": 0, 1237 | "height": 0 1238 | }, 1239 | { 1240 | "tag": "strong", 1241 | "start": 30, 1242 | "end": 36, 1243 | "width": 0, 1244 | "height": 0 1245 | }, 1246 | { 1247 | "tag": "strong", 1248 | "start": 85, 1249 | "end": 97, 1250 | "width": 0, 1251 | "height": 0 1252 | } 1253 | ] 1254 | } 1255 | }, 1256 | { 1257 | "id": "7c90", 1258 | "type": 1, 1259 | "image": { 1260 | "width": 640, 1261 | "height": 530, 1262 | "source": "http://img.qingmang.mobi/image/orion/3fc971a4ede137c1cba33bfbee69f108_640_530.jpeg", 1263 | "inline": false 1264 | } 1265 | }, 1266 | { 1267 | "id": "f7c4", 1268 | "type": 0, 1269 | "text": { 1270 | "text": "-减肥误区-", 1271 | "markups": [ 1272 | { 1273 | "tag": "strong", 1274 | "start": 0, 1275 | "end": 6, 1276 | "width": 0, 1277 | "height": 0 1278 | } 1279 | ] 1280 | } 1281 | }, 1282 | { 1283 | "id": "4464", 1284 | "type": 0, 1285 | "text": { 1286 | "text": "人们往往将一个人肥胖的原因归结为“管不住嘴,迈不开腿”。事实是,当瘦素(因为瘦素阻抗)失去作用的时候,保存能量成为一个不受意志控制的生化过程。生化过程在这个变化中起了主导作用,体重增加只是现象,而“管不住嘴,迈不开腿”的行为是生物化学的结果,不是肥胖的根本原因。", 1287 | "markups": [ 1288 | { 1289 | "tag": "strong", 1290 | "start": 71, 1291 | "end": 131, 1292 | "width": 0, 1293 | "height": 0 1294 | } 1295 | ] 1296 | } 1297 | }, 1298 | { 1299 | "id": "5868", 1300 | "type": 0, 1301 | "text": { 1302 | "text": "大脑的奖赏机制" 1303 | } 1304 | }, 1305 | { 1306 | "id": "de91", 1307 | "type": 0, 1308 | "text": { 1309 | "text": "进食是大脑奖赏机制的一种(吸烟、喝酒是其它)。在这种机制下,食欲是通过食物的可口性,而不是能量需求来调节的。当我们吃到美味的食物时,大脑会释放多巴胺(Dopamine),人会感觉愉悦。", 1310 | "markups": [ 1311 | { 1312 | "tag": "strong", 1313 | "start": 23, 1314 | "end": 53, 1315 | "width": 0, 1316 | "height": 0 1317 | }, 1318 | { 1319 | "tag": "strong", 1320 | "start": 71, 1321 | "end": 74, 1322 | "width": 0, 1323 | "height": 0 1324 | } 1325 | ] 1326 | } 1327 | }, 1328 | { 1329 | "id": "fd0e", 1330 | "type": 1, 1331 | "image": { 1332 | "width": 640, 1333 | "height": 206, 1334 | "source": "http://img.qingmang.mobi/image/orion/cd7718a577783a86ddc08ac904406994_640_206.jpeg", 1335 | "inline": false 1336 | } 1337 | }, 1338 | { 1339 | "id": "235c", 1340 | "type": 0, 1341 | "text": { 1342 | "text": "在正常情况下,食物吃够了之后,瘦素会向大脑发送信号,抑制多巴胺的释放,从而减少食物带来的奖赏。", 1343 | "markups": [ 1344 | { 1345 | "tag": "strong", 1346 | "start": 15, 1347 | "end": 17, 1348 | "width": 0, 1349 | "height": 0 1350 | }, 1351 | { 1352 | "tag": "strong", 1353 | "start": 26, 1354 | "end": 34, 1355 | "width": 0, 1356 | "height": 0 1357 | } 1358 | ] 1359 | } 1360 | }, 1361 | { 1362 | "id": "288a", 1363 | "type": 1, 1364 | "image": { 1365 | "width": 640, 1366 | "height": 284, 1367 | "source": "http://img.qingmang.mobi/image/orion/ae6527fd38d0a8929c5b48dc7714ec61_640_284.jpeg", 1368 | "inline": false 1369 | } 1370 | }, 1371 | { 1372 | "id": "c023", 1373 | "type": 0, 1374 | "text": { 1375 | "text": "可是如果体内的胰岛素过高,它所引起的“瘦素阻抗”会导致多巴胺无法从大脑中被清除。瘦素不足引起的饥饿信号和多巴胺引起的奖赏信号双管齐下,你如何抵挡得了食物的诱惑?", 1376 | "markups": [ 1377 | { 1378 | "tag": "strong", 1379 | "start": 18, 1380 | "end": 39, 1381 | "width": 0, 1382 | "height": 0 1383 | }, 1384 | { 1385 | "tag": "strong", 1386 | "start": 58, 1387 | "end": 62, 1388 | "width": 0, 1389 | "height": 0 1390 | } 1391 | ] 1392 | } 1393 | }, 1394 | { 1395 | "id": "b667", 1396 | "type": 0, 1397 | "text": { 1398 | "text": "过量的卡路里摄入就这样开始了..." 1399 | } 1400 | }, 1401 | { 1402 | "id": "eb06", 1403 | "type": 1, 1404 | "image": { 1405 | "width": 640, 1406 | "height": 433, 1407 | "source": "http://img.qingmang.mobi/image/orion/65386777bba7b8956a11dec8e0ce1e3a_640_433.jpeg", 1408 | "inline": false 1409 | } 1410 | }, 1411 | { 1412 | "id": "e631", 1413 | "type": 0, 1414 | "text": { 1415 | "text": "糖成瘾" 1416 | } 1417 | }, 1418 | { 1419 | "id": "5c7b", 1420 | "type": 0, 1421 | "text": { 1422 | "text": "血清素(serotonin)是使人感到幸福和快乐的神经传导素。当你吃较多的碳水化合物,特别是糖的时候,胰岛素会促进血清素在大脑里的合成,让人感到幸福和昏昏欲睡。", 1423 | "markups": [ 1424 | { 1425 | "tag": "strong", 1426 | "start": 0, 1427 | "end": 3, 1428 | "width": 0, 1429 | "height": 0 1430 | }, 1431 | { 1432 | "tag": "strong", 1433 | "start": 43, 1434 | "end": 47, 1435 | "width": 0, 1436 | "height": 0 1437 | }, 1438 | { 1439 | "tag": "strong", 1440 | "start": 72, 1441 | "end": 74, 1442 | "width": 0, 1443 | "height": 0 1444 | }, 1445 | { 1446 | "tag": "strong", 1447 | "start": 75, 1448 | "end": 79, 1449 | "width": 0, 1450 | "height": 0 1451 | } 1452 | ] 1453 | } 1454 | }, 1455 | { 1456 | "id": "0ddf", 1457 | "type": 1, 1458 | "image": { 1459 | "width": 640, 1460 | "height": 362, 1461 | "source": "http://img.qingmang.mobi/image/orion/c0a2cf0a88b399c620cf9a5660a36da7_640_362.jpeg", 1462 | "inline": false 1463 | } 1464 | }, 1465 | { 1466 | "id": "2710", 1467 | "type": 0, 1468 | "text": { 1469 | "text": "胰岛素阻抗会导致瘦素阻抗。出现瘦素阻抗时,大脑以为身体处于饥饿当中,会形成一种持续的不快乐。恰好血清素带来的幸福感可以暂时取代这种不快乐。“在不快乐中寻找快乐”,这时候人会寻求更多的糖和碳水化合物,糖瘾就是这样形成的。", 1470 | "markups": [ 1471 | { 1472 | "tag": "strong", 1473 | "start": 0, 1474 | "end": 5, 1475 | "width": 0, 1476 | "height": 0 1477 | }, 1478 | { 1479 | "tag": "strong", 1480 | "start": 8, 1481 | "end": 12, 1482 | "width": 0, 1483 | "height": 0 1484 | }, 1485 | { 1486 | "tag": "strong", 1487 | "start": 39, 1488 | "end": 45, 1489 | "width": 0, 1490 | "height": 0 1491 | }, 1492 | { 1493 | "tag": "strong", 1494 | "start": 48, 1495 | "end": 68, 1496 | "width": 0, 1497 | "height": 0 1498 | }, 1499 | { 1500 | "tag": "strong", 1501 | "start": 99, 1502 | "end": 101, 1503 | "width": 0, 1504 | "height": 0 1505 | } 1506 | ] 1507 | } 1508 | }, 1509 | { 1510 | "id": "7981", 1511 | "type": 0, 1512 | "text": { 1513 | "text": "现在你知道人为什么会吃多了吗?" 1514 | } 1515 | }, 1516 | { 1517 | "id": "59fb", 1518 | "type": 1, 1519 | "image": { 1520 | "width": 640, 1521 | "height": 738, 1522 | "source": "http://img.qingmang.mobi/image/orion/1ef5d33872f08e48dd7ce132c672f299_640_738.jpeg", 1523 | "inline": false 1524 | } 1525 | }, 1526 | { 1527 | "id": "f319", 1528 | "type": 0, 1529 | "text": { 1530 | "text": "-能量守恒-", 1531 | "markups": [ 1532 | { 1533 | "tag": "strong", 1534 | "start": 0, 1535 | "end": 3, 1536 | "width": 0, 1537 | "height": 0 1538 | }, 1539 | { 1540 | "tag": "strong", 1541 | "start": 3, 1542 | "end": 6, 1543 | "width": 0, 1544 | "height": 0 1545 | } 1546 | ] 1547 | } 1548 | }, 1549 | { 1550 | "id": "c2c9", 1551 | "type": 1, 1552 | "image": { 1553 | "width": 640, 1554 | "height": 131, 1555 | "source": "http://img.qingmang.mobi/image/orion/7bb97155382b42655ddde091a1e1a117_640_131.jpeg", 1556 | "inline": false 1557 | } 1558 | }, 1559 | { 1560 | "id": "4f08", 1561 | "type": 0, 1562 | "text": { 1563 | "text": "有人用热力学第一定律来解释肥胖:“你一定是管不住嘴,迈不开腿,所以才会胖”。", 1564 | "markups": [ 1565 | { 1566 | "tag": "strong", 1567 | "start": 16, 1568 | "end": 37, 1569 | "width": 0, 1570 | "height": 0 1571 | } 1572 | ] 1573 | } 1574 | }, 1575 | { 1576 | "id": "f7bf", 1577 | "type": 1, 1578 | "image": { 1579 | "width": 640, 1580 | "height": 172, 1581 | "source": "http://img.qingmang.mobi/image/orion/70b87524d194fb095494a04b0ff993d3_640_172.jpeg", 1582 | "inline": false 1583 | } 1584 | }, 1585 | { 1586 | "id": "d530", 1587 | "type": 0, 1588 | "text": { 1589 | "text": "这个定律没有用错,但他们把因果关系弄错了。", 1590 | "markups": [ 1591 | { 1592 | "tag": "strong", 1593 | "start": 13, 1594 | "end": 17, 1595 | "width": 0, 1596 | "height": 0 1597 | } 1598 | ] 1599 | } 1600 | }, 1601 | { 1602 | "id": "8cab", 1603 | "type": 0, 1604 | "text": { 1605 | "text": "青少年在青春期发育的时候,我们会说“他在长高,所以吃很多”,可是从来不会说“他是因为吃多了才长高的”。为什么对待肥胖我们却一再坚持:“他胖是因为吃多了”?" 1606 | } 1607 | }, 1608 | { 1609 | "id": "ce05", 1610 | "type": 0, 1611 | "text": { 1612 | "text": "从以上的分析我们知道,肥胖的结果是荷尔蒙决定的,不是卡路里决定的,所以肥胖用能量守恒来解释,应该是:“因为你胖了,所以会多吃”。而其中的原理是:高胰岛素导致能量的储存,如果你活动量没有改变,就一定会吃得更多。", 1613 | "markups": [ 1614 | { 1615 | "tag": "strong", 1616 | "start": 11, 1617 | "end": 32, 1618 | "width": 0, 1619 | "height": 0 1620 | }, 1621 | { 1622 | "tag": "strong", 1623 | "start": 50, 1624 | "end": 63, 1625 | "width": 0, 1626 | "height": 0 1627 | }, 1628 | { 1629 | "tag": "strong", 1630 | "start": 72, 1631 | "end": 104, 1632 | "width": 0, 1633 | "height": 0 1634 | } 1635 | ] 1636 | } 1637 | }, 1638 | { 1639 | "id": "5f4a", 1640 | "type": 1, 1641 | "image": { 1642 | "width": 640, 1643 | "height": 172, 1644 | "source": "http://img.qingmang.mobi/image/orion/41f5b5b4dadbf4f60601c5617b06e15c_640_172.jpeg", 1645 | "inline": false 1646 | } 1647 | }, 1648 | { 1649 | "id": "68e0", 1650 | "type": 0, 1651 | "text": { 1652 | "text": "那么说,导致肥胖的罪魁祸首是胰岛素。除了胰岛素,还有没有其它因素呢?", 1653 | "markups": [ 1654 | { 1655 | "tag": "strong", 1656 | "start": 14, 1657 | "end": 17, 1658 | "width": 0, 1659 | "height": 0 1660 | } 1661 | ] 1662 | } 1663 | }, 1664 | { 1665 | "id": "2b5b", 1666 | "type": 0, 1667 | "text": { 1668 | "text": "酒精会使人发胖吗?" 1669 | } 1670 | }, 1671 | { 1672 | "id": "ed38", 1673 | "type": 0, 1674 | "text": { 1675 | "text": "我们来看看2两米饭和1杯啤酒在代谢上有什么不同...", 1676 | "markups": [ 1677 | { 1678 | "tag": "strong", 1679 | "start": 5, 1680 | "end": 9, 1681 | "width": 0, 1682 | "height": 0 1683 | }, 1684 | { 1685 | "tag": "strong", 1686 | "start": 10, 1687 | "end": 14, 1688 | "width": 0, 1689 | "height": 0 1690 | } 1691 | ] 1692 | } 1693 | }, 1694 | { 1695 | "id": "0b0a", 1696 | "type": 0, 1697 | "text": { 1698 | "text": "当你吃了2两米饭后,它会转成130卡路里的葡萄糖,其中只有20%,也就是26卡路里由肝脏进行代谢。", 1699 | "markups": [ 1700 | { 1701 | "tag": "strong", 1702 | "start": 29, 1703 | "end": 32, 1704 | "width": 0, 1705 | "height": 0 1706 | }, 1707 | { 1708 | "tag": "strong", 1709 | "start": 36, 1710 | "end": 49, 1711 | "width": 0, 1712 | "height": 0 1713 | } 1714 | ] 1715 | } 1716 | }, 1717 | { 1718 | "id": "6929", 1719 | "type": 1, 1720 | "image": { 1721 | "width": 640, 1722 | "height": 349, 1723 | "source": "http://img.qingmang.mobi/image/orion/25ef7a2d6bd152d066abaeea6707c781_640_349.jpeg", 1724 | "inline": false 1725 | } 1726 | }, 1727 | { 1728 | "id": "ccfb", 1729 | "type": 0, 1730 | "text": { 1731 | "text": "当你喝了一杯啤酒后,80%的乙醇,也就是84卡路里在肝脏里代谢。", 1732 | "markups": [ 1733 | { 1734 | "tag": "strong", 1735 | "start": 10, 1736 | "end": 13, 1737 | "width": 0, 1738 | "height": 0 1739 | }, 1740 | { 1741 | "tag": "strong", 1742 | "start": 20, 1743 | "end": 31, 1744 | "width": 0, 1745 | "height": 0 1746 | } 1747 | ] 1748 | } 1749 | }, 1750 | { 1751 | "id": "eb13", 1752 | "type": 1, 1753 | "image": { 1754 | "width": 640, 1755 | "height": 491, 1756 | "source": "http://img.qingmang.mobi/image/orion/b583af3454b6c9626f4ec2c11c154928_640_491.jpeg", 1757 | "inline": false 1758 | } 1759 | }, 1760 | { 1761 | "id": "29fc", 1762 | "type": 0, 1763 | "text": { 1764 | "text": "和葡萄糖不一样的是,乙醇在肝脏里不会形成糖原,而是直接进入细胞的线粒体。大量的乙醇(>3倍)无法被线粒体利用,会被转化成油脂。油脂在肝脏细胞和肌肉细胞里聚积,会引起胰岛素阻抗和酒精性脂肪肝,导致肥胖。", 1765 | "markups": [ 1766 | { 1767 | "tag": "strong", 1768 | "start": 10, 1769 | "end": 35, 1770 | "width": 0, 1771 | "height": 0 1772 | }, 1773 | { 1774 | "tag": "strong", 1775 | "start": 60, 1776 | "end": 62, 1777 | "width": 0, 1778 | "height": 0 1779 | }, 1780 | { 1781 | "tag": "strong", 1782 | "start": 82, 1783 | "end": 87, 1784 | "width": 0, 1785 | "height": 0 1786 | }, 1787 | { 1788 | "tag": "strong", 1789 | "start": 88, 1790 | "end": 94, 1791 | "width": 0, 1792 | "height": 0 1793 | }, 1794 | { 1795 | "tag": "strong", 1796 | "start": 97, 1797 | "end": 99, 1798 | "width": 0, 1799 | "height": 0 1800 | } 1801 | ] 1802 | } 1803 | }, 1804 | { 1805 | "id": "3bce", 1806 | "type": 1, 1807 | "image": { 1808 | "width": 640, 1809 | "height": 266, 1810 | "source": "http://img.qingmang.mobi/image/orion/102a2afceb154185f704bf4006adbea4_640_266.jpeg", 1811 | "inline": false 1812 | } 1813 | }, 1814 | { 1815 | "id": "5e0e", 1816 | "type": 0, 1817 | "text": { 1818 | "text": "果糖更容易令人发胖?" 1819 | } 1820 | }, 1821 | { 1822 | "id": "882a", 1823 | "type": 0, 1824 | "text": { 1825 | "text": "果糖(fructose)和葡萄糖(glucose)都属于单糖。不同的是,葡萄糖会提升血糖,而果糖不会。也就是说,果糖不会导致胰岛素升高。", 1826 | "markups": [ 1827 | { 1828 | "tag": "strong", 1829 | "start": 56, 1830 | "end": 67, 1831 | "width": 0, 1832 | "height": 0 1833 | } 1834 | ] 1835 | } 1836 | }, 1837 | { 1838 | "id": "c872", 1839 | "type": 0, 1840 | "text": { 1841 | "text": "那是不是意味着果糖不会引起肥胖呢?恰恰相反!以橙汁为例:" 1842 | } 1843 | }, 1844 | { 1845 | "id": "2118", 1846 | "type": 0, 1847 | "text": { 1848 | "text": "一杯橙汁含有55卡路里的葡萄糖和55卡路里的果糖。55卡路里的葡萄糖中,20%(11卡路里)会在肝脏里代谢。55卡路里的果糖中,几乎100%会在肝脏里代谢。也就是说,总共66卡路里的橙汁会在肝脏代谢。", 1849 | "markups": [ 1850 | { 1851 | "tag": "strong", 1852 | "start": 36, 1853 | "end": 39, 1854 | "width": 0, 1855 | "height": 0 1856 | }, 1857 | { 1858 | "tag": "strong", 1859 | "start": 66, 1860 | "end": 70, 1861 | "width": 0, 1862 | "height": 0 1863 | }, 1864 | { 1865 | "tag": "strong", 1866 | "start": 85, 1867 | "end": 90, 1868 | "width": 0, 1869 | "height": 0 1870 | } 1871 | ] 1872 | } 1873 | }, 1874 | { 1875 | "id": "2a84", 1876 | "type": 1, 1877 | "image": { 1878 | "width": 640, 1879 | "height": 434, 1880 | "source": "http://img.qingmang.mobi/image/orion/4607b66733cb396bbd74455379a44975_640_434.jpeg", 1881 | "inline": false 1882 | } 1883 | }, 1884 | { 1885 | "id": "af31", 1886 | "type": 0, 1887 | "text": { 1888 | "text": "从这些数字来看,一杯橙汁对肝脏代谢造成的负荷,仅仅略次于一杯啤酒(66卡路里 vs 84卡路里)。", 1889 | "markups": [ 1890 | { 1891 | "tag": "strong", 1892 | "start": 8, 1893 | "end": 32, 1894 | "width": 0, 1895 | "height": 0 1896 | } 1897 | ] 1898 | } 1899 | }, 1900 | { 1901 | "id": "295d", 1902 | "type": 0, 1903 | "text": { 1904 | "text": "和乙醇一样,大部分的果糖在肝脏里转成油脂,造成肝脏细胞和肌肉细胞油脂的囤积,引起胰岛素阻抗和非酒精性脂肪肝。", 1905 | "markups": [ 1906 | { 1907 | "tag": "strong", 1908 | "start": 23, 1909 | "end": 54, 1910 | "width": 0, 1911 | "height": 0 1912 | } 1913 | ] 1914 | } 1915 | }, 1916 | { 1917 | "id": "0908", 1918 | "type": 1, 1919 | "image": { 1920 | "width": 640, 1921 | "height": 267, 1922 | "source": "http://img.qingmang.mobi/image/orion/7bfd202ba98f5533e589bebc30c56efb_640_267.jpeg", 1923 | "inline": false 1924 | } 1925 | }, 1926 | { 1927 | "id": "e1cd", 1928 | "type": 0, 1929 | "text": { 1930 | "text": "因此,虽然酒精和果糖不会直接刺激胰岛素,但过量的酒精或者果糖摄入会导致脂肪肝,引起胰岛素阻抗,造成肥胖。", 1931 | "markups": [ 1932 | { 1933 | "tag": "strong", 1934 | "start": 21, 1935 | "end": 52, 1936 | "width": 0, 1937 | "height": 0 1938 | } 1939 | ] 1940 | } 1941 | }, 1942 | { 1943 | "id": "317b", 1944 | "type": 0, 1945 | "text": { 1946 | "text": "-果糖迷思-", 1947 | "markups": [ 1948 | { 1949 | "tag": "strong", 1950 | "start": 0, 1951 | "end": 6, 1952 | "width": 0, 1953 | "height": 0 1954 | } 1955 | ] 1956 | } 1957 | }, 1958 | { 1959 | "id": "e377", 1960 | "type": 0, 1961 | "text": { 1962 | "text": "水果和蔬菜一直被人们相提并论,被认为是吃得越多越好的东西。问题在于,人体对果糖没有像对葡萄糖一样的保护机制,胰岛素不起作用。和酒精一样,过量的果糖对肝脏是巨大的负担,而添加了蔗糖和高果糖浆(HFCS)的饮料,甚至果汁,使现代人饮食中果糖的量大大超标。更糟的是,酒精会通过大脑告诉你过量了,果糖却只会让你更high...有脂肪肝和痛风的人,除了注意酒精的用量,也要注意水果、果汁的用量。", 1963 | "markups": [ 1964 | { 1965 | "tag": "strong", 1966 | "start": 181, 1967 | "end": 191, 1968 | "width": 0, 1969 | "height": 0 1970 | } 1971 | ] 1972 | } 1973 | }, 1974 | { 1975 | "id": "f37d", 1976 | "type": 0, 1977 | "text": { 1978 | "text": "另外,葡萄糖会抑制饥饿激素(ghrelin),起到控制食欲的作用,但是果糖对饥饿激素没有影响,容易造成饮食过量,这是喝果汁和吃太多水果造成肥胖的又一个原因。", 1979 | "markups": [ 1980 | { 1981 | "tag": "strong", 1982 | "start": 9, 1983 | "end": 13, 1984 | "width": 0, 1985 | "height": 0 1986 | }, 1987 | { 1988 | "tag": "strong", 1989 | "start": 35, 1990 | "end": 46, 1991 | "width": 0, 1992 | "height": 0 1993 | } 1994 | ] 1995 | } 1996 | }, 1997 | { 1998 | "id": "0d97", 1999 | "type": 1, 2000 | "image": { 2001 | "width": 640, 2002 | "height": 283, 2003 | "source": "http://img.qingmang.mobi/image/orion/9952094d3324259c03a4e2cad6bec749_640_283.jpeg", 2004 | "inline": false 2005 | } 2006 | }, 2007 | { 2008 | "id": "7bcc", 2009 | "type": 0, 2010 | "text": { 2011 | "text": "甲状腺做的怪" 2012 | } 2013 | }, 2014 | { 2015 | "id": "a881", 2016 | "type": 0, 2017 | "text": { 2018 | "text": "甲状腺是长在脖子上像蝴蝶形状的一对腺体,它在下丘脑(hypothalamus)和垂体(pituitary)的指令下,分泌甲状腺激素,调节人体的代谢率和蛋白质合成。好比恒温器决定了房间的温度,甲状腺决定了一个人的代谢率。", 2019 | "markups": [ 2020 | { 2021 | "tag": "strong", 2022 | "start": 95, 2023 | "end": 108, 2024 | "width": 0, 2025 | "height": 0 2026 | } 2027 | ] 2028 | } 2029 | }, 2030 | { 2031 | "id": "86c6", 2032 | "type": 1, 2033 | "image": { 2034 | "width": 640, 2035 | "height": 531, 2036 | "source": "http://img.qingmang.mobi/image/orion/23e8a7cc7816692feb607b61b41b5e8c_640_531.jpeg", 2037 | "inline": false 2038 | } 2039 | }, 2040 | { 2041 | "id": "6ced", 2042 | "type": 0, 2043 | "text": { 2044 | "text": "如果甲状腺功能出现障碍,或者下丘脑-垂体-甲状腺反馈机制出现问题,或者甲状腺素(T4)至三碘甲状腺原氨酸(T3)的转换不给力,都有可能影响一个人正常的代谢率。", 2045 | "markups": [ 2046 | { 2047 | "tag": "strong", 2048 | "start": 14, 2049 | "end": 24, 2050 | "width": 0, 2051 | "height": 0 2052 | }, 2053 | { 2054 | "tag": "strong", 2055 | "start": 35, 2056 | "end": 56, 2057 | "width": 0, 2058 | "height": 0 2059 | } 2060 | ] 2061 | } 2062 | }, 2063 | { 2064 | "id": "a089", 2065 | "type": 1, 2066 | "image": { 2067 | "width": 640, 2068 | "height": 502, 2069 | "source": "http://img.qingmang.mobi/image/orion/aaabce8a0540737c489fa96db4155a70_640_502.jpeg", 2070 | "inline": false 2071 | } 2072 | }, 2073 | { 2074 | "id": "8a50", 2075 | "type": 0, 2076 | "text": { 2077 | "text": "甲状腺功能减退(甲减)意味着身体代谢率下降,能量的消耗减少,它是不少人体重问题的原因之一,特别是女性。甲减的典型症状是怕冷、掉头发、便秘、疲劳等等。", 2078 | "markups": [ 2079 | { 2080 | "tag": "strong", 2081 | "start": 0, 2082 | "end": 11, 2083 | "width": 0, 2084 | "height": 0 2085 | }, 2086 | { 2087 | "tag": "strong", 2088 | "start": 32, 2089 | "end": 50, 2090 | "width": 0, 2091 | "height": 0 2092 | } 2093 | ] 2094 | } 2095 | }, 2096 | { 2097 | "id": "d782", 2098 | "type": 1, 2099 | "image": { 2100 | "width": 1142, 2101 | "height": 1130, 2102 | "source": "http://img.qingmang.mobi/image/orion/64940ec5525ea57274b3312315042177_1142_1130.jpeg", 2103 | "inline": false 2104 | } 2105 | }, 2106 | { 2107 | "id": "0abb", 2108 | "type": 0, 2109 | "text": { 2110 | "text": "如果你有甲减,任何少吃多运动的努力都是徒劳无功,因为别忘了,荷尔蒙第一,卡路里第二。", 2111 | "markups": [ 2112 | { 2113 | "tag": "strong", 2114 | "start": 0, 2115 | "end": 23, 2116 | "width": 0, 2117 | "height": 0 2118 | }, 2119 | { 2120 | "tag": "strong", 2121 | "start": 30, 2122 | "end": 42, 2123 | "width": 0, 2124 | "height": 0 2125 | } 2126 | ] 2127 | } 2128 | }, 2129 | { 2130 | "id": "fed0", 2131 | "type": 0, 2132 | "text": { 2133 | "text": "压力做的怪", 2134 | "linetype": "big" 2135 | } 2136 | }, 2137 | { 2138 | "id": "bb76", 2139 | "type": 0, 2140 | "text": { 2141 | "text": "皮质醇是我们遇到压力时肾上腺分泌的激素,它的作用是帮助人应对压力。", 2142 | "markups": [ 2143 | { 2144 | "tag": "strong", 2145 | "start": 11, 2146 | "end": 14, 2147 | "width": 0, 2148 | "height": 0 2149 | } 2150 | ] 2151 | } 2152 | }, 2153 | { 2154 | "id": "fd0d", 2155 | "type": 1, 2156 | "image": { 2157 | "width": 640, 2158 | "height": 1030, 2159 | "source": "http://img.qingmang.mobi/image/orion/360cca8fe10ee2744e4d7deb1aca47db_640_1030.jpeg", 2160 | "inline": false 2161 | } 2162 | }, 2163 | { 2164 | "id": "b9bc", 2165 | "type": 0, 2166 | "text": { 2167 | "text": "皮质醇有刺激脂蛋白脂肪酶(LPL)和激素敏感性脂肪酶(HSL)的作用。LPL的作用是将脂蛋白带入脂肪细胞或者肌肉细胞。HSL的作用是释放储存在脂肪细胞里的脂肪。换句话说,LPL帮助增脂,HSL帮助减脂。", 2168 | "markups": [ 2169 | { 2170 | "tag": "strong", 2171 | "start": 7, 2172 | "end": 12, 2173 | "width": 0, 2174 | "height": 0 2175 | }, 2176 | { 2177 | "tag": "strong", 2178 | "start": 18, 2179 | "end": 26, 2180 | "width": 0, 2181 | "height": 0 2182 | }, 2183 | { 2184 | "tag": "strong", 2185 | "start": 85, 2186 | "end": 100, 2187 | "width": 0, 2188 | "height": 0 2189 | } 2190 | ] 2191 | } 2192 | }, 2193 | { 2194 | "id": "5ec7", 2195 | "type": 1, 2196 | "image": { 2197 | "width": 640, 2198 | "height": 599, 2199 | "source": "http://img.qingmang.mobi/image/orion/21405321f19fe9b9f5ed80c8d5cae746_640_599.jpeg", 2200 | "inline": false 2201 | } 2202 | }, 2203 | { 2204 | "id": "48d9", 2205 | "type": 0, 2206 | "text": { 2207 | "text": "胰岛素会激活脂肪细胞的LPL,特别是腹部的脂肪细胞。同时胰岛素会抑制肌肉细胞的LPL。因此胰岛素释放得越多,脂肪被存储得越多,消耗得越少。", 2208 | "markups": [ 2209 | { 2210 | "tag": "strong", 2211 | "start": 0, 2212 | "end": 14, 2213 | "width": 0, 2214 | "height": 0 2215 | }, 2216 | { 2217 | "tag": "strong", 2218 | "start": 32, 2219 | "end": 42, 2220 | "width": 0, 2221 | "height": 0 2222 | } 2223 | ] 2224 | } 2225 | }, 2226 | { 2227 | "id": "08ed", 2228 | "type": 1, 2229 | "image": { 2230 | "width": 640, 2231 | "height": 334, 2232 | "source": "http://img.qingmang.mobi/image/orion/b5b9d5730bc0cb148d668c41efeedff9_640_334.jpeg", 2233 | "inline": false 2234 | } 2235 | }, 2236 | { 2237 | "id": "8eae", 2238 | "type": 0, 2239 | "text": { 2240 | "text": "压力有可能使人增重,也有可能让人减脂,其决定因素是胰岛素。当胰岛素水平较高时,通过LPL的作用,压力会使人增重。当胰岛素水平较低时,通过HSL的作用,压力会使人减脂。", 2241 | "markups": [ 2242 | { 2243 | "tag": "strong", 2244 | "start": 25, 2245 | "end": 28, 2246 | "width": 0, 2247 | "height": 0 2248 | }, 2249 | { 2250 | "tag": "strong", 2251 | "start": 29, 2252 | "end": 83, 2253 | "width": 0, 2254 | "height": 0 2255 | } 2256 | ] 2257 | } 2258 | }, 2259 | { 2260 | "id": "41a2", 2261 | "type": 1, 2262 | "image": { 2263 | "width": 640, 2264 | "height": 429, 2265 | "source": "http://img.qingmang.mobi/image/orion/eee7a00ccb92b2e184d391b73ff80e9f_640_429.jpeg", 2266 | "inline": false 2267 | } 2268 | }, 2269 | { 2270 | "id": "bc0c", 2271 | "type": 0, 2272 | "text": { 2273 | "text": "因此,爱吃甜食的人压力大的时候容易发胖,不爱吃甜食的人压力大的时候反而瘦。", 2274 | "markups": [ 2275 | { 2276 | "tag": "strong", 2277 | "start": 3, 2278 | "end": 36, 2279 | "width": 0, 2280 | "height": 0 2281 | } 2282 | ] 2283 | } 2284 | }, 2285 | { 2286 | "id": "455b", 2287 | "type": 0, 2288 | "text": { 2289 | "text": "研究表明,那些对心理压力反应大的人(他们会产生较多的皮质醇),往往高脂高糖的食物也吃得最多。" 2290 | } 2291 | }, 2292 | { 2293 | "id": "f345", 2294 | "type": 1, 2295 | "image": { 2296 | "width": 640, 2297 | "height": 481, 2298 | "source": "http://img.qingmang.mobi/image/orion/50b1774f037ca7eb42a7f0c67b49b16b_640_481.jpeg", 2299 | "inline": false 2300 | } 2301 | }, 2302 | { 2303 | "id": "ce2b", 2304 | "type": 0, 2305 | "text": { 2306 | "text": "△“stressed”(压力大)反过来拼就是“desserts”(甜点)" 2307 | } 2308 | }, 2309 | { 2310 | "id": "2f13", 2311 | "type": 0, 2312 | "text": { 2313 | "text": "你不是饿了,是渴了" 2314 | } 2315 | }, 2316 | { 2317 | "id": "5238", 2318 | "type": 0, 2319 | "text": { 2320 | "text": "水是人体最重要的营养素。人可以8个星期没有食物,但不能1天没有水。充足的水和作用对激素在整个身体中的有效运转起了重要作用。", 2321 | "markups": [ 2322 | { 2323 | "tag": "strong", 2324 | "start": 33, 2325 | "end": 61, 2326 | "width": 0, 2327 | "height": 0 2328 | } 2329 | ] 2330 | } 2331 | }, 2332 | { 2333 | "id": "1253", 2334 | "type": 1, 2335 | "image": { 2336 | "width": 640, 2337 | "height": 386, 2338 | "source": "http://img.qingmang.mobi/image/orion/6145c14c1aa11e964171c714a1fb779b_640_386.jpeg", 2339 | "inline": false 2340 | } 2341 | }, 2342 | { 2343 | "id": "f66e", 2344 | "type": 0, 2345 | "text": { 2346 | "text": "如果一个人长期处于缺水的状态,他的“口渴”的感觉会被扭曲,往往将身体“渴”的信号误认为“饿”,明明只是缺水,却一直找东西吃。", 2347 | "markups": [ 2348 | { 2349 | "tag": "strong", 2350 | "start": 47, 2351 | "end": 61, 2352 | "width": 0, 2353 | "height": 0 2354 | } 2355 | ] 2356 | } 2357 | }, 2358 | { 2359 | "id": "a9bc", 2360 | "type": 1, 2361 | "image": { 2362 | "width": 640, 2363 | "height": 216, 2364 | "source": "http://img.qingmang.mobi/image/orion/8e7df72750ac890b606734c37618c08f_640_216.jpeg", 2365 | "inline": false 2366 | } 2367 | }, 2368 | { 2369 | "id": "8f55", 2370 | "type": 0, 2371 | "text": { 2372 | "text": "要注意的是,茶、咖啡、果汁、碳酸饮料都不是水,它们是利尿剂。利尿剂导致排出的水比喝进去的还多。如果从早到晚喝的都是这些饮料,你其实没有喝到水。", 2373 | "markups": [ 2374 | { 2375 | "tag": "strong", 2376 | "start": 6, 2377 | "end": 29, 2378 | "width": 0, 2379 | "height": 0 2380 | } 2381 | ] 2382 | } 2383 | }, 2384 | { 2385 | "id": "9d9c", 2386 | "type": 1, 2387 | "image": { 2388 | "width": 640, 2389 | "height": 184, 2390 | "source": "http://img.qingmang.mobi/image/orion/65c9c3e6508330ff998fd184f771dd52_640_184.jpeg", 2391 | "inline": false 2392 | } 2393 | }, 2394 | { 2395 | "id": "d668", 2396 | "type": 1, 2397 | "image": { 2398 | "width": 640, 2399 | "height": 20, 2400 | "source": "http://img.qingmang.mobi/image/orion/8739868cc650de15c7f466154e376831_640_20.gif", 2401 | "inline": false 2402 | } 2403 | }, 2404 | { 2405 | "id": "c3f3", 2406 | "type": 0, 2407 | "text": { 2408 | "text": "说了这么多,原来导致肥胖的不是卡路里,而是荷尔蒙!", 2409 | "markups": [ 2410 | { 2411 | "tag": "strong", 2412 | "start": 8, 2413 | "end": 24, 2414 | "width": 0, 2415 | "height": 0 2416 | } 2417 | ] 2418 | } 2419 | }, 2420 | { 2421 | "id": "dd77", 2422 | "type": 0, 2423 | "text": { 2424 | "text": "胰岛素、瘦素、多巴胺、血清素、甲状腺素、皮质醇....这么多的荷尔蒙在起作用,可是到了今天,我们关注的仅仅是卡路里!更糟糕的是,控制卡路里没有卵用😭…", 2425 | "markups": [ 2426 | { 2427 | "tag": "strong", 2428 | "start": 64, 2429 | "end": 73, 2430 | "width": 0, 2431 | "height": 0 2432 | } 2433 | ] 2434 | } 2435 | }, 2436 | { 2437 | "id": "a5d5", 2438 | "type": 0, 2439 | "text": { 2440 | "text": "为什么这么说?我们到底应该怎么做?长按下方二维码关注「吃惑」了解更多。", 2441 | "markups": [ 2442 | { 2443 | "tag": "strong", 2444 | "start": 26, 2445 | "end": 30, 2446 | "width": 0, 2447 | "height": 0 2448 | } 2449 | ] 2450 | } 2451 | }, 2452 | { 2453 | "id": "35ed", 2454 | "type": 1, 2455 | "image": { 2456 | "width": 640, 2457 | "height": 640, 2458 | "source": "http://img.qingmang.mobi/image/orion/f4f369bccacb6cce58427046026395dc_640_640.jpeg", 2459 | "inline": false 2460 | } 2461 | }, 2462 | { 2463 | "id": "421b", 2464 | "type": 0, 2465 | "text": { 2466 | "text": "< END >", 2467 | "markups": [ 2468 | { 2469 | "tag": "strong", 2470 | "start": 0, 2471 | "end": 7, 2472 | "width": 0, 2473 | "height": 0 2474 | } 2475 | ], 2476 | "linetype": "aside" 2477 | } 2478 | }, 2479 | { 2480 | "id": "3898", 2481 | "type": 0, 2482 | "text": { 2483 | "text": "References:", 2484 | "markups": [ 2485 | { 2486 | "tag": "strong", 2487 | "start": 0, 2488 | "end": 11, 2489 | "width": 0, 2490 | "height": 0 2491 | } 2492 | ] 2493 | } 2494 | }, 2495 | { 2496 | "id": "efb3", 2497 | "type": 0, 2498 | "text": { 2499 | "text": "[1] Gerard J. Tortora, “Introduction to the Human Body”, 9th Edition. Wiley Higher Ed.", 2500 | "linetype": "small" 2501 | } 2502 | }, 2503 | { 2504 | "id": "34f1", 2505 | "type": 0, 2506 | "text": { 2507 | "text": "[2] J. S. Flier, “What’s in a Name? In Search of Leptin’s Physiologic Role,” J. Clin. Endocr. Metab. 83 (1998): 1407– 13.", 2508 | "linetype": "small" 2509 | } 2510 | }, 2511 | { 2512 | "id": "6787", 2513 | "type": 0, 2514 | "text": { 2515 | "text": "[3] I. S. Farooqi et al., “Leptin Regulates Striatal Regions and Human Eating Behavior,” Science epub, August 9, 2007/ science. 1144599 (2007).", 2516 | "linetype": "small" 2517 | } 2518 | }, 2519 | { 2520 | "id": "f533", 2521 | "type": 0, 2522 | "text": { 2523 | "text": "[4] I. S. Farooqi et al., “Leptin Regulates Striatal Regions and Human Eating Behavior,” Science epub, August 9, 2007/ science. 1144599 (2007).", 2524 | "linetype": "small" 2525 | } 2526 | }, 2527 | { 2528 | "id": "d53a", 2529 | "type": 0, 2530 | "text": { 2531 | "text": "[5] E. Anderzhanova et al., “Altered Basal and Stimulated Accumbens Dopamine Release in Obese OLETF Rats as a Function of Age and Diabetic Status,” Am. J. Physiol. Regul. Integr. Comp. Physiol. 293 (2007): R603– R11.", 2532 | "linetype": "small" 2533 | } 2534 | }, 2535 | { 2536 | "id": "1ad7", 2537 | "type": 0, 2538 | "text": { 2539 | "text": "[6] L. Christensen et al., “Changing Food Preference as a Function of Mood,” J. Psychol. 140 (2006): 293– 306.", 2540 | "linetype": "small" 2541 | } 2542 | }, 2543 | { 2544 | "id": "cbaf", 2545 | "type": 0, 2546 | "text": { 2547 | "text": "[7] R. S. O’Shea et al., “Alcoholic Liver Disease,” Am. J. Gastroenterol. 105 (2010): 14– 32.", 2548 | "linetype": "small" 2549 | } 2550 | }, 2551 | { 2552 | "id": "c799", 2553 | "type": 0, 2554 | "text": { 2555 | "text": "[8] V. T. Samuel, “Fructose Induced Lipogenesis: From Sugar to Fat to Insulin Resistance,” Trends Endocrinol. Metab. 22 (2011): 60– 65.", 2556 | "linetype": "small" 2557 | } 2558 | }, 2559 | { 2560 | "id": "7b61", 2561 | "type": 0, 2562 | "text": { 2563 | "text": "[9] A. J. Tomiyama et al., “Comfort Food Is Comforting to Those Most Stressed: Evidence of the Chronic Stress Response Network in High Stress Women,” Psychoneuroendocrinology 36 (2011): 1513– 19.", 2564 | "linetype": "small" 2565 | } 2566 | }, 2567 | { 2568 | "id": "eea4", 2569 | "type": 0, 2570 | "text": { 2571 | "text": "[10] Kronenberg, H. M., S. Melmed, K. S. Polonsky, and P. R. Larsen. 2008. Williams Textbook of Endocrinology. Philadelphia: Saunders.", 2572 | "linetype": "small" 2573 | } 2574 | }, 2575 | { 2576 | "id": "8f35", 2577 | "type": 1, 2578 | "image": { 2579 | "width": 640, 2580 | "height": 20, 2581 | "source": "http://img.qingmang.mobi/image/orion/21fbe4e8ee77de9a63d822f4f3e613f8_640_20.gif", 2582 | "inline": false 2583 | } 2584 | }, 2585 | { 2586 | "id": "d11e", 2587 | "type": 1, 2588 | "image": { 2589 | "width": 640, 2590 | "height": 530, 2591 | "source": "http://img.qingmang.mobi/image/orion/4bdcc413beaa07157980685fa21aae9d_640_530.jpeg", 2592 | "inline": false 2593 | } 2594 | }, 2595 | { 2596 | "id": "7f8b", 2597 | "type": 0, 2598 | "text": { 2599 | "text": "阅读原文", 2600 | "markups": [ 2601 | { 2602 | "tag": "a", 2603 | "start": 0, 2604 | "end": 4, 2605 | "source": "http://a.app.qq.com/o/simple.jsp?pkgname=com.rjfittime.app", 2606 | "width": 0, 2607 | "height": 0 2608 | } 2609 | ] 2610 | } 2611 | } 2612 | ] -------------------------------------------------------------------------------- /raml/samples/wx_text_and_image.raml: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1015", 4 | "type": 0, 5 | "text": { 6 | "text": "本文作者:李伯伯\n授权转载自微信公众号:旁白VoiceOver(ID:Pangbai2016),未经许可,请勿转载。" 7 | } 8 | }, 9 | { 10 | "id": "46b3", 11 | "type": 0, 12 | "text": { 13 | "text": "一年一度的礼物季即将上线,但给人挑礼物这事儿可不容易,简直可以和装修,生娃,便秘一起并称为人生四大苦…" 14 | } 15 | }, 16 | { 17 | "id": "7688", 18 | "type": 0, 19 | "text": { 20 | "text": "便宜的没法出手,太奢侈又得逼人卖肾;太日常没惊喜,高冷的也派不上用场;颜值低了肯定被嫌弃,风格太犀利又怕对方 hold 不住;堪称三俗的鲜花香水巧克力免谈,选择困难濒临崩溃,再逼我就只能直接丢红包了…" 21 | } 22 | }, 23 | { 24 | "id": "7395", 25 | "type": 0, 26 | "text": { 27 | "text": "作为一个前互联网产品从业人员,深知用户的痛点就是我们的机会,分析用户需求后,提出了针对性的一揽子解决方案。" 28 | } 29 | }, 30 | { 31 | "id": "f63c", 32 | "type": 0, 33 | "text": { 34 | "text": "送礼这事儿,讲究对症下药,送礼对象的人设和场景就是我们挑选礼物的决定因素。", 35 | "markups": [ 36 | { 37 | "tag": "strong", 38 | "start": 13, 39 | "end": 37, 40 | "width": 0, 41 | "height": 0 42 | } 43 | ] 44 | } 45 | }, 46 | { 47 | "id": "7992", 48 | "type": 0, 49 | "text": { 50 | "text": "我们从不同角度琢磨出了这些关键词:" 51 | } 52 | }, 53 | { 54 | "id": "e2ba", 55 | "type": 0, 56 | "text": { 57 | "text": "1. 风格:古灵精怪,性冷淡,文艺向,恶趣味,外貌协会…\n2. 爱好:酒鬼,乐迷,书虫,咖啡控,影迷,吃货…\n3. 角色:少女,少男,熟女,熟男,长辈,成功人士…\n4. 场景:治愈,新婚,乔迁,过冬,去野…", 58 | "markups": [ 59 | { 60 | "tag": "strong", 61 | "start": 0, 62 | "end": 6, 63 | "width": 0, 64 | "height": 0 65 | }, 66 | { 67 | "tag": "strong", 68 | "start": 29, 69 | "end": 35, 70 | "width": 0, 71 | "height": 0 72 | }, 73 | { 74 | "tag": "strong", 75 | "start": 55, 76 | "end": 61, 77 | "width": 0, 78 | "height": 0 79 | }, 80 | { 81 | "tag": "strong", 82 | "start": 82, 83 | "end": 88, 84 | "width": 0, 85 | "height": 0 86 | } 87 | ] 88 | } 89 | }, 90 | { 91 | "id": "146b", 92 | "type": 0, 93 | "text": { 94 | "text": "之前的第1弹包括了8类人设:古灵精怪,性冷淡,文艺向,酒鬼,乐迷,书虫,少女,少男。(复习戳链接《40款礼物推荐 | 有什么实用又有逼格的礼物值得送?》)", 95 | "markups": [ 96 | { 97 | "tag": "a", 98 | "start": 49, 99 | "end": 75, 100 | "source": "http://mp.weixin.qq.com/s?__biz=MzAwODIyMTUyNQ==&mid=2651025057&idx=4&sn=bd8fceb536143259b5bed38e2a2d9eef&chksm=8085e89bb7f2618d62725452e79f9d778bfd0f071bba8ef160bc27cb9bea4e282c2de02cf24b&scene=21#wechat_redirect", 101 | "width": 0, 102 | "height": 0 103 | } 104 | ] 105 | } 106 | }, 107 | { 108 | "id": "8576", 109 | "type": 0, 110 | "text": { 111 | "text": "本篇第2弹囊括这6个关键词:熟女,熟男,恶趣味,治愈,外貌协会,咖啡控。", 112 | "markups": [ 113 | { 114 | "tag": "strong", 115 | "start": 14, 116 | "end": 36, 117 | "width": 0, 118 | "height": 0 119 | } 120 | ] 121 | } 122 | }, 123 | { 124 | "id": "cbe4", 125 | "type": 0, 126 | "text": { 127 | "text": "为避免选择困难,每个人设分类精选5款礼物推荐,请各位对号入座,各取所需。" 128 | } 129 | }, 130 | { 131 | "id": "a0c1", 132 | "type": 1, 133 | "image": { 134 | "width": 1024, 135 | "height": 240, 136 | "source": "http://img.qingmang.mobi/image/orion/0a07bfc9dc8612c449add6b6121404e4_1024_240.jpeg", 137 | "inline": false 138 | } 139 | }, 140 | { 141 | "id": "2ce6", 142 | "type": 0, 143 | "text": { 144 | "text": "熟女", 145 | "markups": [ 146 | { 147 | "tag": "strong", 148 | "start": 0, 149 | "end": 2, 150 | "width": 0, 151 | "height": 0 152 | } 153 | ], 154 | "linetype": "aside" 155 | } 156 | }, 157 | { 158 | "id": "f2e9", 159 | "type": 0, 160 | "text": { 161 | "text": "之前的第一弹聊完了少男少女,这次聊聊中青年版本,考虑到本人是常年出没于互联网圈,跟时尚没半毛钱关系的直男。", 162 | "markups": [ 163 | { 164 | "tag": "strong", 165 | "start": 14, 166 | "end": 24, 167 | "width": 0, 168 | "height": 0 169 | } 170 | ] 171 | } 172 | }, 173 | { 174 | "id": "f57a", 175 | "type": 0, 176 | "text": { 177 | "text": "此段落务必配合阅读:广大时尚博主的穿搭指南, Instagram 和好奇心日报的文章《新时代的我们应该如何「以貌取人」》。" 178 | } 179 | }, 180 | { 181 | "id": "7072", 182 | "type": 0, 183 | "text": { 184 | "text": "▍GENTLE MONSTER 墨镜", 185 | "markups": [ 186 | { 187 | "tag": "strong", 188 | "start": 0, 189 | "end": 1, 190 | "width": 0, 191 | "height": 0 192 | }, 193 | { 194 | "tag": "strong", 195 | "start": 1, 196 | "end": 18, 197 | "width": 0, 198 | "height": 0 199 | } 200 | ] 201 | } 202 | }, 203 | { 204 | "id": "02a6", 205 | "type": 1, 206 | "image": { 207 | "width": 600, 208 | "height": 400, 209 | "source": "http://img.qingmang.mobi/image/orion/f51a047a336809f6daddce049632bf5c_600_400.jpeg", 210 | "inline": false 211 | } 212 | }, 213 | { 214 | "id": "cb95", 215 | "type": 0, 216 | "text": { 217 | "text": "很火爆的韩国新晋眼镜品牌,风格上有点 Acne 的路数,设计高调,尺寸大,戴上显脸小,广大饼脸同学的福音…", 218 | "markups": [ 219 | { 220 | "tag": "strong", 221 | "start": 4, 222 | "end": 13, 223 | "width": 0, 224 | "height": 0 225 | }, 226 | { 227 | "tag": "strong", 228 | "start": 28, 229 | "end": 43, 230 | "width": 0, 231 | "height": 0 232 | } 233 | ] 234 | } 235 | }, 236 | { 237 | "id": "25b8", 238 | "type": 0, 239 | "text": { 240 | "text": "店铺陈设非常特别,每家店都讲述一个不同主题的故事,夏天去逛北京三里屯店跟逛艺术展似的… 价格还算亲民,一般1000来块,官网有售 。", 241 | "markups": [ 242 | { 243 | "tag": "strong", 244 | "start": 44, 245 | "end": 51, 246 | "width": 0, 247 | "height": 0 248 | } 249 | ] 250 | } 251 | }, 252 | { 253 | "id": "f264", 254 | "type": 0, 255 | "text": { 256 | "text": "▍Cul de Sac 罗汉柏香薰木块 HIBA BLOCKS", 257 | "markups": [ 258 | { 259 | "tag": "strong", 260 | "start": 0, 261 | "end": 1, 262 | "width": 0, 263 | "height": 0 264 | }, 265 | { 266 | "tag": "strong", 267 | "start": 1, 268 | "end": 31, 269 | "width": 0, 270 | "height": 0 271 | } 272 | ] 273 | } 274 | }, 275 | { 276 | "id": "b059", 277 | "type": 1, 278 | "image": { 279 | "width": 600, 280 | "height": 280, 281 | "source": "http://img.qingmang.mobi/image/orion/a69394b9fc5a0b148701f65dc9682771_600_280.jpeg", 282 | "inline": false 283 | } 284 | }, 285 | { 286 | "id": "bc54", 287 | "type": 0, 288 | "text": { 289 | "text": "来自公众号「吃很重要」西维同学的推荐,工作室 Cul de Sac 推出的这个产品真的只是几块木头,取材自有200多年树龄的青森罗汗柏(Aomori Hiba,其木材常用于建造寺庙)。" 290 | } 291 | }, 292 | { 293 | "id": "06da", 294 | "type": 0, 295 | "text": { 296 | "text": "木块本身自带幽香,再滴上几滴精油,放在床头刚刚好。 日本乐天有售 ¥150 。", 297 | "markups": [ 298 | { 299 | "tag": "strong", 300 | "start": 0, 301 | "end": 25, 302 | "width": 0, 303 | "height": 0 304 | } 305 | ] 306 | } 307 | }, 308 | { 309 | "id": "6a47", 310 | "type": 0, 311 | "text": { 312 | "text": "▍Mountain Blossom Furoshiki 风吕敷", 313 | "markups": [ 314 | { 315 | "tag": "strong", 316 | "start": 0, 317 | "end": 1, 318 | "width": 0, 319 | "height": 0 320 | }, 321 | { 322 | "tag": "strong", 323 | "start": 1, 324 | "end": 31, 325 | "width": 0, 326 | "height": 0 327 | } 328 | ] 329 | } 330 | }, 331 | { 332 | "id": "aba3", 333 | "type": 1, 334 | "image": { 335 | "width": 600, 336 | "height": 475, 337 | "source": "http://img.qingmang.mobi/image/orion/a012d0855ef243b95f4abe5760cfa02a_600_475.jpeg", 338 | "inline": false 339 | } 340 | }, 341 | { 342 | "id": "fad7", 343 | "type": 1, 344 | "image": { 345 | "width": 600, 346 | "height": 400, 347 | "source": "http://img.qingmang.mobi/image/orion/76ce6c18ea1c0c483dae88adc3645394_600_400.jpeg", 348 | "inline": false 349 | } 350 | }, 351 | { 352 | "id": "f006", 353 | "type": 0, 354 | "text": { 355 | "text": "在日本,风吕敷传统上就是用来搬运或收纳物品的包袱皮,但图案实在太美,干脆拿来当围巾吧,学爱马仕丝巾裱起来当挂画也不错。", 356 | "markups": [ 357 | { 358 | "tag": "strong", 359 | "start": 4, 360 | "end": 26, 361 | "width": 0, 362 | "height": 0 363 | }, 364 | { 365 | "tag": "strong", 366 | "start": 38, 367 | "end": 41, 368 | "width": 0, 369 | "height": 0 370 | }, 371 | { 372 | "tag": "strong", 373 | "start": 52, 374 | "end": 59, 375 | "width": 0, 376 | "height": 0 377 | } 378 | ] 379 | } 380 | }, 381 | { 382 | "id": "ee15", 383 | "type": 0, 384 | "text": { 385 | "text": "个人很喜欢手工艺品电商 Etsy 上的这个日本店家「 TheLinkCollective 」,店里的风吕敷背包也美极了… Etsy 有售,风吕敷售价 $48 。" 386 | } 387 | }, 388 | { 389 | "id": "bda6", 390 | "type": 0, 391 | "text": { 392 | "text": "▍FREITAG 帆布包", 393 | "markups": [ 394 | { 395 | "tag": "strong", 396 | "start": 0, 397 | "end": 1, 398 | "width": 0, 399 | "height": 0 400 | }, 401 | { 402 | "tag": "strong", 403 | "start": 1, 404 | "end": 12, 405 | "width": 0, 406 | "height": 0 407 | } 408 | ] 409 | } 410 | }, 411 | { 412 | "id": "eda0", 413 | "type": 1, 414 | "image": { 415 | "width": 600, 416 | "height": 338, 417 | "source": "http://img.qingmang.mobi/image/orion/0b9dd4b23454ad4e183780a67bb07eba_600_338.jpeg", 418 | "inline": false 419 | } 420 | }, 421 | { 422 | "id": "1a43", 423 | "type": 0, 424 | "text": { 425 | "text": "因为用卡车防水油布等回收材料制成,瑞士品牌 FREITAG 的每个包都是独一无二的,大色块拼贴的设计,风吹日晒磨砺出的质感都相当特别。", 426 | "markups": [ 427 | { 428 | "tag": "strong", 429 | "start": 2, 430 | "end": 17, 431 | "width": 0, 432 | "height": 0 433 | }, 434 | { 435 | "tag": "strong", 436 | "start": 31, 437 | "end": 42, 438 | "width": 0, 439 | "height": 0 440 | } 441 | ] 442 | } 443 | }, 444 | { 445 | "id": "3104", 446 | "type": 0, 447 | "text": { 448 | "text": "女同学可以考虑 Tote bags 和 Shopper 系列,男同学不妨搞个邮差包,官网和各种设计品店有售,100-400刀不等 。" 449 | } 450 | }, 451 | { 452 | "id": "ded0", 453 | "type": 0, 454 | "text": { 455 | "text": "▍Building Block Bucket Bag 水桶包", 456 | "markups": [ 457 | { 458 | "tag": "strong", 459 | "start": 0, 460 | "end": 1, 461 | "width": 0, 462 | "height": 0 463 | }, 464 | { 465 | "tag": "strong", 466 | "start": 1, 467 | "end": 30, 468 | "width": 0, 469 | "height": 0 470 | } 471 | ] 472 | } 473 | }, 474 | { 475 | "id": "f10d", 476 | "type": 1, 477 | "image": { 478 | "width": 600, 479 | "height": 865, 480 | "source": "http://img.qingmang.mobi/image/orion/aed441007b9a8a013314352f3e55789e_600_865.jpeg", 481 | "inline": false 482 | } 483 | }, 484 | { 485 | "id": "a8fe", 486 | "type": 0, 487 | "text": { 488 | "text": "女同学说包治百病,那就干脆再搬出一个压轴… 时尚行业流行趋势比帝都火锅行业还难以捉摸,水桶包火得就很莫名…" 489 | } 490 | }, 491 | { 492 | "id": "6a74", 493 | "type": 0, 494 | "text": { 495 | "text": "除了经典的 MANSUR GAVRIEL 之外,Building Block 顶个球的这款也是相当俏皮,Building Block 官网有售 $485 。" 496 | } 497 | }, 498 | { 499 | "id": "baab", 500 | "type": 1, 501 | "image": { 502 | "width": 1024, 503 | "height": 184, 504 | "source": "http://img.qingmang.mobi/image/orion/bb3e136219709c3ad2e7f45699219fdb_1024_184.jpeg", 505 | "inline": false 506 | } 507 | }, 508 | { 509 | "id": "a35b", 510 | "type": 0, 511 | "text": { 512 | "text": "熟男", 513 | "markups": [ 514 | { 515 | "tag": "strong", 516 | "start": 0, 517 | "end": 2, 518 | "width": 0, 519 | "height": 0 520 | } 521 | ], 522 | "linetype": "aside" 523 | } 524 | }, 525 | { 526 | "id": "ef89", 527 | "type": 0, 528 | "text": { 529 | "text": "广大男同胞 / 有男票的妹子们,请务必花时间拾掇拾掇自己 / 给你家那口子献出一点爱心。" 530 | } 531 | }, 532 | { 533 | "id": "000a", 534 | "type": 0, 535 | "text": { 536 | "text": "▍Everlane The Marled Crew Tee 混棉圆领T恤", 537 | "markups": [ 538 | { 539 | "tag": "strong", 540 | "start": 0, 541 | "end": 1, 542 | "width": 0, 543 | "height": 0 544 | }, 545 | { 546 | "tag": "strong", 547 | "start": 1, 548 | "end": 36, 549 | "width": 0, 550 | "height": 0 551 | } 552 | ] 553 | } 554 | }, 555 | { 556 | "id": "d0f6", 557 | "type": 1, 558 | "image": { 559 | "width": 600, 560 | "height": 600, 561 | "source": "http://img.qingmang.mobi/image/orion/203fa86375d74e088349914655fcbff2_600_600.jpeg", 562 | "inline": false 563 | } 564 | }, 565 | { 566 | "id": "a899", 567 | "type": 0, 568 | "text": { 569 | "text": "创立于2010年的 Everlane 是这几年美国新晋生活方式品牌的代表,也是我个人非常喜欢的一个品牌,简约,低调,设计好,高性价比,高透明度,品质远胜各种快时尚和 COS 这种纯拼颜值的品牌。", 570 | "markups": [ 571 | { 572 | "tag": "strong", 573 | "start": 25, 574 | "end": 33, 575 | "width": 0, 576 | "height": 0 577 | }, 578 | { 579 | "tag": "strong", 580 | "start": 52, 581 | "end": 97, 582 | "width": 0, 583 | "height": 0 584 | } 585 | ] 586 | } 587 | }, 588 | { 589 | "id": "2e70", 590 | "type": 0, 591 | "text": { 592 | "text": "T恤是 Everlane 的看家品类,之前买过那件男款 Tee ,大爱灰色混棉面料的质感,学院风品牌 J.Crew 也特爱用这个材料, Everlane 官网仅售 $22 。", 593 | "markups": [ 594 | { 595 | "tag": "strong", 596 | "start": 0, 597 | "end": 19, 598 | "width": 0, 599 | "height": 0 600 | } 601 | ] 602 | } 603 | }, 604 | { 605 | "id": "6713", 606 | "type": 0, 607 | "text": { 608 | "text": "女生也有很多选择,比如下面的这件 The Ryan Pocket Tee:" 609 | } 610 | }, 611 | { 612 | "id": "a532", 613 | "type": 1, 614 | "image": { 615 | "width": 600, 616 | "height": 600, 617 | "source": "http://img.qingmang.mobi/image/orion/22871f35bb20e0267ea6bdcfff0f055d_600_600.jpeg", 618 | "inline": false 619 | } 620 | }, 621 | { 622 | "id": "3405", 623 | "type": 0, 624 | "text": { 625 | "text": "▍TRETORN Nylite Canvas Sneaker 帆布鞋", 626 | "markups": [ 627 | { 628 | "tag": "strong", 629 | "start": 0, 630 | "end": 1, 631 | "width": 0, 632 | "height": 0 633 | }, 634 | { 635 | "tag": "strong", 636 | "start": 1, 637 | "end": 34, 638 | "width": 0, 639 | "height": 0 640 | } 641 | ] 642 | } 643 | }, 644 | { 645 | "id": "119b", 646 | "type": 1, 647 | "image": { 648 | "width": 600, 649 | "height": 600, 650 | "source": "http://img.qingmang.mobi/image/orion/4c8d2045dee5c086be76e69cf936f459_600_600.jpeg", 651 | "inline": false 652 | } 653 | }, 654 | { 655 | "id": "d951", 656 | "type": 0, 657 | "text": { 658 | "text": "简洁,随性,超脱,低调,百搭,多少褒义词赐给白球鞋都不为过,Jil Sander 和COMMON PROJECTS 的板鞋贵了点儿,我个人买过双意大利国民鞋 Superga x Sandro 的合作款,另有鬼冢虎, Moonstar , Keds , Camper 等多种品牌可选,在这儿推荐的 TRETORN 这个系列非常经典,美亚有售 $40+ 。" 659 | } 660 | }, 661 | { 662 | "id": "b160", 663 | "type": 0, 664 | "text": { 665 | "text": "▍Head Porter Tanker-Standard 系列包袋", 666 | "markups": [ 667 | { 668 | "tag": "strong", 669 | "start": 0, 670 | "end": 1, 671 | "width": 0, 672 | "height": 0 673 | }, 674 | { 675 | "tag": "strong", 676 | "start": 1, 677 | "end": 33, 678 | "width": 0, 679 | "height": 0 680 | } 681 | ] 682 | } 683 | }, 684 | { 685 | "id": "8883", 686 | "type": 1, 687 | "image": { 688 | "width": 600, 689 | "height": 600, 690 | "source": "http://img.qingmang.mobi/image/orion/35408d53ef1e586726ddac3b39e37a03_600_600.jpeg", 691 | "inline": false 692 | } 693 | }, 694 | { 695 | "id": "0c34", 696 | "type": 0, 697 | "text": { 698 | "text": "始创于1935年的东京皮革厂(诶…听起来怎么有点耳熟) Yoshida 吉田,60年代推出 Porter 包袋系列。" 699 | } 700 | }, 701 | { 702 | "id": "5a8d", 703 | "type": 0, 704 | "text": { 705 | "text": "近年来 Head Porter 由霓虹国潮流教父藤原浩发扬光大,Tanker 系列是最经典&低调的,东京各种潮牌买手店都能见得到,这个双肩包官网售价21000日元,人民币1300入手。", 706 | "markups": [ 707 | { 708 | "tag": "strong", 709 | "start": 32, 710 | "end": 50, 711 | "width": 0, 712 | "height": 0 713 | } 714 | ] 715 | } 716 | }, 717 | { 718 | "id": "7b1c", 719 | "type": 0, 720 | "text": { 721 | "text": "▍Bottega Veneta Card Case 钱包/卡包", 722 | "markups": [ 723 | { 724 | "tag": "strong", 725 | "start": 0, 726 | "end": 1, 727 | "width": 0, 728 | "height": 0 729 | }, 730 | { 731 | "tag": "strong", 732 | "start": 1, 733 | "end": 31, 734 | "width": 0, 735 | "height": 0 736 | } 737 | ] 738 | } 739 | }, 740 | { 741 | "id": "e044", 742 | "type": 1, 743 | "image": { 744 | "width": 600, 745 | "height": 499, 746 | "source": "http://img.qingmang.mobi/image/orion/b25edca8c942e4c1b8db199bbc1ef179_600_499.jpeg", 747 | "inline": false 748 | } 749 | }, 750 | { 751 | "id": "7773", 752 | "type": 1, 753 | "image": { 754 | "width": 600, 755 | "height": 600, 756 | "source": "http://img.qingmang.mobi/image/orion/6fc4512ec59c3f1f7fbc4b5c4ffdc9af_600_600.jpeg", 757 | "inline": false 758 | } 759 | }, 760 | { 761 | "id": "b299", 762 | "type": 0, 763 | "text": { 764 | "text": "曾有幸获赠过一款 Bottega Veneta 钱包,深蓝色编织小羊皮,设计和手感都没得挑… 考虑到现在出门已经不带钱包,入一个卡包轻装上阵也不错,MR PORTER 有售,免费直邮中国,钱包¥2400+,卡包¥1600 。" 765 | } 766 | }, 767 | { 768 | "id": "e554", 769 | "type": 0, 770 | "text": { 771 | "text": "▍《人类简史: 从动物到上帝》 尤瓦尔·赫拉利", 772 | "markups": [ 773 | { 774 | "tag": "strong", 775 | "start": 0, 776 | "end": 1, 777 | "width": 0, 778 | "height": 0 779 | }, 780 | { 781 | "tag": "strong", 782 | "start": 1, 783 | "end": 23, 784 | "width": 0, 785 | "height": 0 786 | } 787 | ] 788 | } 789 | }, 790 | { 791 | "id": "46e3", 792 | "type": 0, 793 | "text": { 794 | "text": "光顾着帅有毛用,男人要的是格局… 认知革命农业革命科学革命帝国主义资本主义消费主义兽性人性神性这些大词儿你总得懂点儿吧… 全球瞩目的以色列新锐历史学家这本成名作值得拥有,别一听历史书就头大,这可是一本读起来就欲罢不能的正经畅销书… 亚马逊有售 ¥40 。", 795 | "markups": [ 796 | { 797 | "tag": "strong", 798 | "start": 8, 799 | "end": 17, 800 | "width": 0, 801 | "height": 0 802 | }, 803 | { 804 | "tag": "strong", 805 | "start": 95, 806 | "end": 115, 807 | "width": 0, 808 | "height": 0 809 | } 810 | ] 811 | } 812 | }, 813 | { 814 | "id": "68d6", 815 | "type": 1, 816 | "image": { 817 | "width": 1024, 818 | "height": 182, 819 | "source": "http://img.qingmang.mobi/image/orion/edd878803901428bc9340307dcf87e0d_1024_182.jpeg", 820 | "inline": false 821 | } 822 | }, 823 | { 824 | "id": "c7f4", 825 | "type": 0, 826 | "text": { 827 | "text": "恶趣味", 828 | "markups": [ 829 | { 830 | "tag": "strong", 831 | "start": 0, 832 | "end": 3, 833 | "width": 0, 834 | "height": 0 835 | } 836 | ], 837 | "linetype": "aside" 838 | } 839 | }, 840 | { 841 | "id": "494d", 842 | "type": 0, 843 | "text": { 844 | "text": "40多年前创造 Hello Kitty 的日本三丽鸥公司,在2013年推出的新卡通形象(懒蛋蛋) ,人设是一个永远睡不醒的煎蛋,常用道具是一床用培根做的被子… 当年年底销量就赶超了他的粉色系 Kitty 姐…" 845 | } 846 | }, 847 | { 848 | "id": "66f5", 849 | "type": 1, 850 | "image": { 851 | "width": 600, 852 | "height": 433, 853 | "source": "http://img.qingmang.mobi/image/orion/10f7a51590abe1761c34cedf10f7aebd_600_433.jpeg", 854 | "inline": false 855 | } 856 | }, 857 | { 858 | "id": "7fb3", 859 | "type": 0, 860 | "text": { 861 | "text": "甜美风正能量傻甜白的时代已经过去了,丧、致郁系、恶趣味、生无可恋和尸挺才是时代的主旋律,你看看马男银桑悲伤蛙懒蛋蛋 LouisCK 葛优老师和帕拉尼克的《肠子》有多火就知道了…" 862 | } 863 | }, 864 | { 865 | "id": "f3ce", 866 | "type": 0, 867 | "text": { 868 | "text": "▍Alessi Dr. SkudFly Swatter 人脸苍蝇拍", 869 | "markups": [ 870 | { 871 | "tag": "strong", 872 | "start": 0, 873 | "end": 1, 874 | "width": 0, 875 | "height": 0 876 | }, 877 | { 878 | "tag": "strong", 879 | "start": 1, 880 | "end": 33, 881 | "width": 0, 882 | "height": 0 883 | } 884 | ] 885 | } 886 | }, 887 | { 888 | "id": "0e8e", 889 | "type": 1, 890 | "image": { 891 | "width": 600, 892 | "height": 600, 893 | "source": "http://img.qingmang.mobi/image/orion/cbedc9aed5f0fb1adb7178399982c403_600_600.jpeg", 894 | "inline": false 895 | } 896 | }, 897 | { 898 | "id": "6316", 899 | "type": 0, 900 | "text": { 901 | "text": "跟第一弹中那个骨骼清奇的外星人柠檬榨汁机一样,也是怪咖大叔 Philippe Starck 为 Alessi 设计的,同样被 MoMA 收藏了。" 902 | } 903 | }, 904 | { 905 | "id": "6b65", 906 | "type": 0, 907 | "text": { 908 | "text": "大概5年前在我加入的第一个团队创意家居电商「趣玩」入手,至今供奉在卧室柜子上,从没舍得用这迷之脸庞拍过苍蝇… 美亚有售 $20 。" 909 | } 910 | }, 911 | { 912 | "id": "4d14", 913 | "type": 0, 914 | "text": { 915 | "text": "▍RIPNDIP Lord Nermal Tee 中指猫T恤", 916 | "markups": [ 917 | { 918 | "tag": "strong", 919 | "start": 0, 920 | "end": 1, 921 | "width": 0, 922 | "height": 0 923 | }, 924 | { 925 | "tag": "strong", 926 | "start": 1, 927 | "end": 30, 928 | "width": 0, 929 | "height": 0 930 | } 931 | ] 932 | } 933 | }, 934 | { 935 | "id": "afd3", 936 | "type": 1, 937 | "image": { 938 | "width": 600, 939 | "height": 444, 940 | "source": "http://img.qingmang.mobi/image/orion/aeca309940553b2aa153daf5baaad4d3_600_444.jpeg", 941 | "inline": false 942 | } 943 | }, 944 | { 945 | "id": "bb94", 946 | "type": 0, 947 | "text": { 948 | "text": "来自洛杉矶的魔性潮牌,因为那只名叫 Lord Nermal 的贱兮兮竖中指的白猫火得一塌糊涂,官网里各种调侃经典宗教艺术作品的玩意儿,实在是恶意卖萌的标杆,RIPNDIP 官网有售 $32.00 。" 949 | } 950 | }, 951 | { 952 | "id": "3a31", 953 | "type": 0, 954 | "text": { 955 | "text": "▍PoOtsh 三文鱼抱枕", 956 | "markups": [ 957 | { 958 | "tag": "strong", 959 | "start": 0, 960 | "end": 1, 961 | "width": 0, 962 | "height": 0 963 | }, 964 | { 965 | "tag": "strong", 966 | "start": 1, 967 | "end": 13, 968 | "width": 0, 969 | "height": 0 970 | } 971 | ] 972 | } 973 | }, 974 | { 975 | "id": "1aa5", 976 | "type": 1, 977 | "image": { 978 | "width": 600, 979 | "height": 307, 980 | "source": "http://img.qingmang.mobi/image/orion/41ea88bcb40cc6e9519aa3b6952ed922_600_307.jpeg", 981 | "inline": false 982 | } 983 | }, 984 | { 985 | "id": "a054", 986 | "type": 0, 987 | "text": { 988 | "text": "在帝都的法国小哥创始人 Valéry 以一个光怪陆离的梦为灵感,将自己最爱的三文鱼、大虾、母鸡和法棍等食物做成黑色幽默写实风的抱枕,这两年也是北京各种买手店的爆款。" 989 | } 990 | }, 991 | { 992 | "id": "fe5a", 993 | "type": 0, 994 | "text": { 995 | "text": "注意此三文鱼抱枕非常巨型,足有 70x42cm,女同学们可以搂着睡… 官网有介绍,淘宝有售 ¥328 。", 996 | "markups": [ 997 | { 998 | "tag": "strong", 999 | "start": 0, 1000 | "end": 13, 1001 | "width": 0, 1002 | "height": 0 1003 | }, 1004 | { 1005 | "tag": "strong", 1006 | "start": 24, 1007 | "end": 34, 1008 | "width": 0, 1009 | "height": 0 1010 | } 1011 | ] 1012 | } 1013 | }, 1014 | { 1015 | "id": "2ad4", 1016 | "type": 0, 1017 | "text": { 1018 | "text": "▍Qualy 驯鹿磁力便签贴", 1019 | "markups": [ 1020 | { 1021 | "tag": "strong", 1022 | "start": 0, 1023 | "end": 1, 1024 | "width": 0, 1025 | "height": 0 1026 | }, 1027 | { 1028 | "tag": "strong", 1029 | "start": 1, 1030 | "end": 14, 1031 | "width": 0, 1032 | "height": 0 1033 | } 1034 | ] 1035 | } 1036 | }, 1037 | { 1038 | "id": "d941", 1039 | "type": 1, 1040 | "image": { 1041 | "width": 600, 1042 | "height": 600, 1043 | "source": "http://img.qingmang.mobi/image/orion/b2309bce149002cfd0c0d80ee549196c_600_600.jpeg", 1044 | "inline": false 1045 | } 1046 | }, 1047 | { 1048 | "id": "904b", 1049 | "type": 0, 1050 | "text": { 1051 | "text": "来自泰国设计品牌 Qualy 的黑色幽默冰箱贴,淘宝有售 ¥99 。" 1052 | } 1053 | }, 1054 | { 1055 | "id": "102c", 1056 | "type": 0, 1057 | "text": { 1058 | "text": "▍SELETTI Toiletpaper Enamel Plates 搪瓷餐盘", 1059 | "markups": [ 1060 | { 1061 | "tag": "strong", 1062 | "start": 0, 1063 | "end": 1, 1064 | "width": 0, 1065 | "height": 0 1066 | }, 1067 | { 1068 | "tag": "strong", 1069 | "start": 1, 1070 | "end": 39, 1071 | "width": 0, 1072 | "height": 0 1073 | } 1074 | ] 1075 | } 1076 | }, 1077 | { 1078 | "id": "05b5", 1079 | "type": 1, 1080 | "image": { 1081 | "width": 600, 1082 | "height": 341, 1083 | "source": "http://img.qingmang.mobi/image/orion/f2445fec2d9d3e201a4a0d88aec6e680_600_341.jpeg", 1084 | "inline": false 1085 | } 1086 | }, 1087 | { 1088 | "id": "4483", 1089 | "type": 0, 1090 | "text": { 1091 | "text": "又是个热爱卖萌恶搞的意大利品牌,SELETTI 和前卫视觉艺术杂志《 Toilet Paper 》联手推出的复古家居产品,重口不再难调,良仓及各种设计品买手店有售 ¥185 。", 1092 | "markups": [ 1093 | { 1094 | "tag": "strong", 1095 | "start": 54, 1096 | "end": 61, 1097 | "width": 0, 1098 | "height": 0 1099 | } 1100 | ] 1101 | } 1102 | }, 1103 | { 1104 | "id": "b907", 1105 | "type": 1, 1106 | "image": { 1107 | "width": 1024, 1108 | "height": 162, 1109 | "source": "http://img.qingmang.mobi/image/orion/57151884329b302359bba85471f49958_1024_162.jpeg", 1110 | "inline": false 1111 | } 1112 | }, 1113 | { 1114 | "id": "33e7", 1115 | "type": 0, 1116 | "text": { 1117 | "text": "治愈", 1118 | "markups": [ 1119 | { 1120 | "tag": "strong", 1121 | "start": 0, 1122 | "end": 2, 1123 | "width": 0, 1124 | "height": 0 1125 | } 1126 | ], 1127 | "linetype": "aside" 1128 | } 1129 | }, 1130 | { 1131 | "id": "ab33", 1132 | "type": 0, 1133 | "text": { 1134 | "text": "试用于生老病死,爱别离怨憎会求不得放不下,失恋分手丧偶长期独居,深夜卧床独自观看马男波杰克&百年酒馆,略感 Loneliness (孤身一人的痛苦),但也享受 Solitude (孤身一人的荣光),能忍受寂寞但还没到享受孤独愉悦的境界…" 1135 | } 1136 | }, 1137 | { 1138 | "id": "58e3", 1139 | "type": 0, 1140 | "text": { 1141 | "text": "▍治愈绘本2合1之《你今天真好看》Liz Climo", 1142 | "markups": [ 1143 | { 1144 | "tag": "strong", 1145 | "start": 0, 1146 | "end": 1, 1147 | "width": 0, 1148 | "height": 0 1149 | }, 1150 | { 1151 | "tag": "strong", 1152 | "start": 1, 1153 | "end": 26, 1154 | "width": 0, 1155 | "height": 0 1156 | } 1157 | ] 1158 | } 1159 | }, 1160 | { 1161 | "id": "e096", 1162 | "type": 1, 1163 | "image": { 1164 | "width": 600, 1165 | "height": 815, 1166 | "source": "http://img.qingmang.mobi/image/orion/fc681429aa06aed84c50cae0e31a7c73_600_815.jpeg", 1167 | "inline": false 1168 | } 1169 | }, 1170 | { 1171 | "id": "1dd5", 1172 | "type": 0, 1173 | "text": { 1174 | "text": "主角是各种萌物(恐龙、棕熊、兔子、企鹅獾、土拨鼠)的暖萌绘本,作者是辛普森一家的动画剧组成员 Liz Climo 。", 1175 | "markups": [ 1176 | { 1177 | "tag": "strong", 1178 | "start": 0, 1179 | "end": 31, 1180 | "width": 0, 1181 | "height": 0 1182 | } 1183 | ] 1184 | } 1185 | }, 1186 | { 1187 | "id": "46fe", 1188 | "type": 0, 1189 | "text": { 1190 | "text": "中文版亚马逊有售 ¥23 《你今天真好看(中文版)》 莉兹·克里莫,英文原版亚马逊有售¥62 《The Little World of Liz Climo》。" 1191 | } 1192 | }, 1193 | { 1194 | "id": "e62e", 1195 | "type": 0, 1196 | "text": { 1197 | "text": "▍治愈绘本2合1之《我所有的朋友都死了》Avery Monsen , John Jory", 1198 | "markups": [ 1199 | { 1200 | "tag": "strong", 1201 | "start": 0, 1202 | "end": 1, 1203 | "width": 0, 1204 | "height": 0 1205 | }, 1206 | { 1207 | "tag": "strong", 1208 | "start": 1, 1209 | "end": 44, 1210 | "width": 0, 1211 | "height": 0 1212 | } 1213 | ] 1214 | } 1215 | }, 1216 | { 1217 | "id": "f95d", 1218 | "type": 1, 1219 | "image": { 1220 | "width": 600, 1221 | "height": 544, 1222 | "source": "http://img.qingmang.mobi/image/orion/e8201b536eff51efe21ff05681de9f6b_600_544.jpeg", 1223 | "inline": false 1224 | } 1225 | }, 1226 | { 1227 | "id": "3a94", 1228 | "type": 0, 1229 | "text": { 1230 | "text": "治愈/致郁系黑色幽默绘本,中文版亚马逊有售 ¥33 《我所有的朋友都死了1, 2》。" 1231 | } 1232 | }, 1233 | { 1234 | "id": "0a0f", 1235 | "type": 0, 1236 | "text": { 1237 | "text": "英文原版 All My Friends Are Dead 。" 1238 | } 1239 | }, 1240 | { 1241 | "id": "c71f", 1242 | "type": 0, 1243 | "text": { 1244 | "text": "亚马逊有售 ¥60 :《All My Friends Are Dead》。" 1245 | } 1246 | }, 1247 | { 1248 | "id": "ecf2", 1249 | "type": 0, 1250 | "text": { 1251 | "text": "▍《小說藥方:人生疑難雜症文學指南》", 1252 | "markups": [ 1253 | { 1254 | "tag": "strong", 1255 | "start": 0, 1256 | "end": 1, 1257 | "width": 0, 1258 | "height": 0 1259 | }, 1260 | { 1261 | "tag": "strong", 1262 | "start": 1, 1263 | "end": 18, 1264 | "width": 0, 1265 | "height": 0 1266 | } 1267 | ] 1268 | } 1269 | }, 1270 | { 1271 | "id": "2076", 1272 | "type": 1, 1273 | "image": { 1274 | "width": 600, 1275 | "height": 866, 1276 | "source": "http://img.qingmang.mobi/image/orion/d458b60c60e6f4b08db85166492be56a_600_866.jpeg", 1277 | "inline": false 1278 | } 1279 | }, 1280 | { 1281 | "id": "8dd2", 1282 | "type": 0, 1283 | "text": { 1284 | "text": "第一弹中推荐了当代鸡汤大神阿兰德波顿那本《哲学的慰藉》,这位才子型作家除了写作拍片也创了把业,搞了个非盈利教育机构「人生学校」( The School of Life ),通过线下课程,出书和 Youtube 等渠道,教大家如何「聪明又健康的生活」…" 1285 | } 1286 | }, 1287 | { 1288 | "id": "a791", 1289 | "type": 0, 1290 | "text": { 1291 | "text": "《小說藥方》就源于其中一个「书目治疗」服务,用700多部小说治愈各种人生疑难杂症。", 1292 | "markups": [ 1293 | { 1294 | "tag": "strong", 1295 | "start": 0, 1296 | "end": 41, 1297 | "width": 0, 1298 | "height": 0 1299 | } 1300 | ] 1301 | } 1302 | }, 1303 | { 1304 | "id": "32d5", 1305 | "type": 0, 1306 | "text": { 1307 | "text": "為毛病很多的現代人所寫的搞怪文學指南, 你有打嗝、耳鳴、花粉症、嗜酒成性、滴酒不沾、破產、青春期、喪親之痛、分手、外遇、生活過於井然有序、害怕改變、或生日憂鬱等等的症狀嗎?舉凡生理問題或心靈創傷,人一生中可能面對的疑難雜症其實都有專屬的小說藥方!快來看看哪本小說適合你。" 1308 | }, 1309 | "blockquote": 1 1310 | }, 1311 | { 1312 | "id": "de14", 1313 | "type": 0, 1314 | "text": { 1315 | "text": "台版《小說藥方》设计好一些,亚马逊有售 ¥124 《小說藥方:人生疑難雜症文學指南》 。简体中文版《小说药丸》也刚出了,亚马逊有售 ¥44 《小说药丸》。" 1316 | } 1317 | }, 1318 | { 1319 | "id": "8bf1", 1320 | "type": 0, 1321 | "text": { 1322 | "text": "▍Hug Salt & Pepper Shakers", 1323 | "markups": [ 1324 | { 1325 | "tag": "strong", 1326 | "start": 0, 1327 | "end": 1, 1328 | "width": 0, 1329 | "height": 0 1330 | }, 1331 | { 1332 | "tag": "strong", 1333 | "start": 1, 1334 | "end": 26, 1335 | "width": 0, 1336 | "height": 0 1337 | } 1338 | ] 1339 | } 1340 | }, 1341 | { 1342 | "id": "c258", 1343 | "type": 1, 1344 | "image": { 1345 | "width": 600, 1346 | "height": 493, 1347 | "source": "http://img.qingmang.mobi/image/orion/747c96b3a97d7850d881f2165347196c_600_493.jpeg", 1348 | "inline": false 1349 | } 1350 | }, 1351 | { 1352 | "id": "50f0", 1353 | "type": 0, 1354 | "text": { 1355 | "text": "n 年前在 MoMA 设计商店被这对抱在一起的椒盐瓶萌化了,Alberto Mantilla 设计,椒盐人设正好是黑白两色,俯视还有点太极的感觉,MoMA 有售 $29 。" 1356 | } 1357 | }, 1358 | { 1359 | "id": "0c43", 1360 | "type": 0, 1361 | "text": { 1362 | "text": "▍Suck UK Sun Jar 阳光瓶", 1363 | "markups": [ 1364 | { 1365 | "tag": "strong", 1366 | "start": 0, 1367 | "end": 1, 1368 | "width": 0, 1369 | "height": 0 1370 | }, 1371 | { 1372 | "tag": "strong", 1373 | "start": 1, 1374 | "end": 20, 1375 | "width": 0, 1376 | "height": 0 1377 | } 1378 | ] 1379 | } 1380 | }, 1381 | { 1382 | "id": "6aa6", 1383 | "type": 1, 1384 | "image": { 1385 | "width": 600, 1386 | "height": 447, 1387 | "source": "http://img.qingmang.mobi/image/orion/6102609cec39eeb0506eba08fd805994_600_447.jpeg", 1388 | "inline": false 1389 | } 1390 | }, 1391 | { 1392 | "id": "f4fe", 1393 | "type": 0, 1394 | "text": { 1395 | "text": "英国知名创意品牌 Suck UK 出品,日光充电的暖心小灯,美亚有售 $24 。" 1396 | } 1397 | }, 1398 | { 1399 | "id": "1779", 1400 | "type": 0, 1401 | "text": { 1402 | "text": "▍Bamboo Chime 竹风铃", 1403 | "markups": [ 1404 | { 1405 | "tag": "strong", 1406 | "start": 0, 1407 | "end": 1, 1408 | "width": 0, 1409 | "height": 0 1410 | }, 1411 | { 1412 | "tag": "strong", 1413 | "start": 1, 1414 | "end": 13, 1415 | "width": 0, 1416 | "height": 0 1417 | }, 1418 | { 1419 | "tag": "strong", 1420 | "start": 14, 1421 | "end": 17, 1422 | "width": 0, 1423 | "height": 0 1424 | } 1425 | ] 1426 | } 1427 | }, 1428 | { 1429 | "id": "45de", 1430 | "type": 1, 1431 | "image": { 1432 | "width": 600, 1433 | "height": 800, 1434 | "source": "http://img.qingmang.mobi/image/orion/2eaaa6165875b5b89b335888f41709ae_600_800.jpeg", 1435 | "inline": false 1436 | } 1437 | }, 1438 | { 1439 | "id": "b24a", 1440 | "type": 0, 1441 | "text": { 1442 | "text": "2年前在京都第一次见到竹风铃(就是图里这只),是时清风拂过,风铃声音之美好,整个人都融化了…后来发现起源地貌似是东南亚,Etsy有售 $15+ 。" 1443 | } 1444 | }, 1445 | { 1446 | "id": "9397", 1447 | "type": 1, 1448 | "image": { 1449 | "width": 1024, 1450 | "height": 174, 1451 | "source": "http://img.qingmang.mobi/image/orion/6119508f6b8a77193ec622f96c510e2c_1024_174.jpeg", 1452 | "inline": false 1453 | } 1454 | }, 1455 | { 1456 | "id": "a282", 1457 | "type": 0, 1458 | "text": { 1459 | "text": "咖啡控", 1460 | "markups": [ 1461 | { 1462 | "tag": "strong", 1463 | "start": 0, 1464 | "end": 3, 1465 | "width": 0, 1466 | "height": 0 1467 | } 1468 | ], 1469 | "linetype": "aside" 1470 | } 1471 | }, 1472 | { 1473 | "id": "5aa2", 1474 | "type": 0, 1475 | "text": { 1476 | "text": "据说咖啡熟豆中已经分离出的化合物有一千两百种以上,是巧克力的4倍,葡萄酒的2倍多…看来咖啡喝得可不光是生活方式,下次请用心感受其中的芳香族化合物…" 1477 | } 1478 | }, 1479 | { 1480 | "id": "cc54", 1481 | "type": 0, 1482 | "text": { 1483 | "text": "▍BIALETTI 比乐蒂摩卡壶", 1484 | "markups": [ 1485 | { 1486 | "tag": "strong", 1487 | "start": 0, 1488 | "end": 1, 1489 | "width": 0, 1490 | "height": 0 1491 | }, 1492 | { 1493 | "tag": "strong", 1494 | "start": 1, 1495 | "end": 16, 1496 | "width": 0, 1497 | "height": 0 1498 | } 1499 | ] 1500 | } 1501 | }, 1502 | { 1503 | "id": "ec00", 1504 | "type": 1, 1505 | "image": { 1506 | "width": 600, 1507 | "height": 424, 1508 | "source": "http://img.qingmang.mobi/image/orion/5dd9bcfc4ef91114d6e7a9e3614b561f_600_424.jpeg", 1509 | "inline": false 1510 | } 1511 | }, 1512 | { 1513 | "id": "9e3b", 1514 | "type": 0, 1515 | "text": { 1516 | "text": "1933年意大利人 Alfonso Bialetti 发明的摩卡壶( Moka Pod ) 是世界上第一只通过蒸汽压力而萃取咖啡的家用咖啡壶,结构相当精巧(大家有空可以去看看原理图),设计也是经久不衰,在家冲煮意式咖啡的高性价比选择,亚马逊海外购直接入手 ¥155 。", 1517 | "markups": [ 1518 | { 1519 | "tag": "strong", 1520 | "start": 0, 1521 | "end": 71, 1522 | "width": 0, 1523 | "height": 0 1524 | } 1525 | ] 1526 | } 1527 | }, 1528 | { 1529 | "id": "8de6", 1530 | "type": 0, 1531 | "text": { 1532 | "text": "▍LOVERAMICS Cafe Latte Cup 爱陶乐咖啡杯", 1533 | "markups": [ 1534 | { 1535 | "tag": "strong", 1536 | "start": 0, 1537 | "end": 1, 1538 | "width": 0, 1539 | "height": 0 1540 | }, 1541 | { 1542 | "tag": "strong", 1543 | "start": 1, 1544 | "end": 33, 1545 | "width": 0, 1546 | "height": 0 1547 | } 1548 | ] 1549 | } 1550 | }, 1551 | { 1552 | "id": "866a", 1553 | "type": 1, 1554 | "image": { 1555 | "width": 600, 1556 | "height": 600, 1557 | "source": "http://img.qingmang.mobi/image/orion/77d936d45df5a694df7d33d9b2e73258_600_600.jpeg", 1558 | "inline": false 1559 | } 1560 | }, 1561 | { 1562 | "id": "3be9", 1563 | "type": 0, 1564 | "text": { 1565 | "text": "LOVERAMICS 是来自香港的当红咖啡杯品牌,世界咖啡拉花大赛的官方指定咖啡杯,在各种精品咖啡店里都很常见,官网价 $13,淘宝有售 ¥70 。" 1566 | } 1567 | }, 1568 | { 1569 | "id": "4228", 1570 | "type": 0, 1571 | "text": { 1572 | "text": "▍Wacaco Minipresso 便携手压咖啡器", 1573 | "markups": [ 1574 | { 1575 | "tag": "strong", 1576 | "start": 0, 1577 | "end": 1, 1578 | "width": 0, 1579 | "height": 0 1580 | }, 1581 | { 1582 | "tag": "strong", 1583 | "start": 1, 1584 | "end": 26, 1585 | "width": 0, 1586 | "height": 0 1587 | } 1588 | ] 1589 | } 1590 | }, 1591 | { 1592 | "id": "1222", 1593 | "type": 1, 1594 | "image": { 1595 | "width": 600, 1596 | "height": 491, 1597 | "source": "http://img.qingmang.mobi/image/orion/09e299635f891649c698a9941cdd47f0_600_491.jpeg", 1598 | "inline": false 1599 | } 1600 | }, 1601 | { 1602 | "id": "e80e", 1603 | "type": 0, 1604 | "text": { 1605 | "text": "不想买家用 Espresso 机器和摩卡壶的话,推荐 Wacaco 这款家用旅行两相宜的气泵手压咖啡器,500ml 矿泉水瓶大小轻松塞包里,一头用来加咖啡粉,另一头用来加热水,利用中间的手压泵制作现冲咖啡。亚马逊 Wacaco 官方店有售 ¥449 。", 1606 | "markups": [ 1607 | { 1608 | "tag": "strong", 1609 | "start": 0, 1610 | "end": 52, 1611 | "width": 0, 1612 | "height": 0 1613 | } 1614 | ] 1615 | } 1616 | }, 1617 | { 1618 | "id": "9ee5", 1619 | "type": 0, 1620 | "text": { 1621 | "text": "▍Delonghi Icona 德龙复古系列咖啡机", 1622 | "markups": [ 1623 | { 1624 | "tag": "strong", 1625 | "start": 0, 1626 | "end": 1, 1627 | "width": 0, 1628 | "height": 0 1629 | }, 1630 | { 1631 | "tag": "strong", 1632 | "start": 1, 1633 | "end": 25, 1634 | "width": 0, 1635 | "height": 0 1636 | } 1637 | ] 1638 | } 1639 | }, 1640 | { 1641 | "id": "b210", 1642 | "type": 1, 1643 | "image": { 1644 | "width": 600, 1645 | "height": 450, 1646 | "source": "http://img.qingmang.mobi/image/orion/940e607e4c96ff8fa023085e49e03b00_600_450.jpeg", 1647 | "inline": false 1648 | } 1649 | }, 1650 | { 1651 | "id": "52e5", 1652 | "type": 0, 1653 | "text": { 1654 | "text": "在第一弹中安利过的意大利品牌德龙的 Icona 复古系列,包含咖啡机,电水壶和吐司炉,珠圆玉润,甜而不腻,值得整套收藏,奶油白,橄榄绿色都很美,黑色也相当有质感。建议京东淘宝比价购买,咖啡机600元上下入手。", 1655 | "markups": [ 1656 | { 1657 | "tag": "strong", 1658 | "start": 9, 1659 | "end": 43, 1660 | "width": 0, 1661 | "height": 0 1662 | } 1663 | ] 1664 | } 1665 | }, 1666 | { 1667 | "id": "6a8c", 1668 | "type": 0, 1669 | "text": { 1670 | "text": "▍PopChartLab 咖啡图谱海报装饰画", 1671 | "markups": [ 1672 | { 1673 | "tag": "strong", 1674 | "start": 0, 1675 | "end": 1, 1676 | "width": 0, 1677 | "height": 0 1678 | }, 1679 | { 1680 | "tag": "strong", 1681 | "start": 1, 1682 | "end": 22, 1683 | "width": 0, 1684 | "height": 0 1685 | } 1686 | ] 1687 | } 1688 | }, 1689 | { 1690 | "id": "22b6", 1691 | "type": 1, 1692 | "image": { 1693 | "width": 600, 1694 | "height": 410, 1695 | "source": "http://img.qingmang.mobi/image/orion/560e6c07b0710b22522cfc0d47b9b732_600_410.jpeg", 1696 | "inline": false 1697 | } 1698 | }, 1699 | { 1700 | "id": "9d23", 1701 | "type": 1, 1702 | "image": { 1703 | "width": 500, 1704 | "height": 669, 1705 | "source": "http://img.qingmang.mobi/image/orion/3b2a24783bb84304424395386a918e74_500_669.jpeg", 1706 | "inline": false 1707 | } 1708 | }, 1709 | { 1710 | "id": "8d33", 1711 | "type": 0, 1712 | "text": { 1713 | "text": "The Compendious Coffee Chart 和 Exceptional Expressions of Espresso 2款海报,纽约设计工作室 PopChartLab 出品,有艺术家签名和版号,咖啡爱好者们请按图索骥吧。官网有介绍,旁白淘宝店有售 ¥339 。" 1714 | } 1715 | }, 1716 | { 1717 | "id": "0bb4", 1718 | "type": 1, 1719 | "image": { 1720 | "width": 1024, 1721 | "height": 202, 1722 | "source": "http://img.qingmang.mobi/image/orion/bbc835d682f8c397f5a04b516d6a8e8c_1024_202.jpeg", 1723 | "inline": false 1724 | } 1725 | }, 1726 | { 1727 | "id": "1b59", 1728 | "type": 0, 1729 | "text": { 1730 | "text": "外貌协会", 1731 | "markups": [ 1732 | { 1733 | "tag": "strong", 1734 | "start": 0, 1735 | "end": 4, 1736 | "width": 0, 1737 | "height": 0 1738 | } 1739 | ], 1740 | "linetype": "aside" 1741 | } 1742 | }, 1743 | { 1744 | "id": "b823", 1745 | "type": 0, 1746 | "text": { 1747 | "text": "据说这是个颜值即正义的时代…" 1748 | } 1749 | }, 1750 | { 1751 | "id": "b564", 1752 | "type": 0, 1753 | "text": { 1754 | "text": "▍HAY Kaleido Trays 多彩组合托盘", 1755 | "markups": [ 1756 | { 1757 | "tag": "strong", 1758 | "start": 0, 1759 | "end": 1, 1760 | "width": 0, 1761 | "height": 0 1762 | }, 1763 | { 1764 | "tag": "strong", 1765 | "start": 1, 1766 | "end": 25, 1767 | "width": 0, 1768 | "height": 0 1769 | } 1770 | ] 1771 | } 1772 | }, 1773 | { 1774 | "id": "21b4", 1775 | "type": 1, 1776 | "image": { 1777 | "width": 600, 1778 | "height": 453, 1779 | "source": "http://img.qingmang.mobi/image/orion/c1c39d101992595add39eac7bc735026_600_453.jpeg", 1780 | "inline": false 1781 | } 1782 | }, 1783 | { 1784 | "id": "830d", 1785 | "type": 0, 1786 | "text": { 1787 | "text": "北欧家居品牌颜值担当 HAY 家的颜值担当,辨识度极高,咖啡馆里摆一套,怎么着每杯咖啡也得多卖两块…" 1788 | } 1789 | }, 1790 | { 1791 | "id": "ac2e", 1792 | "type": 0, 1793 | "text": { 1794 | "text": "HAY 官网有售 £10.00+,淘宝有售 ¥290+ 。" 1795 | } 1796 | }, 1797 | { 1798 | "id": "5dbe", 1799 | "type": 0, 1800 | "text": { 1801 | "text": "▍Arteum Rene Magritte 餐盘", 1802 | "markups": [ 1803 | { 1804 | "tag": "strong", 1805 | "start": 0, 1806 | "end": 1, 1807 | "width": 0, 1808 | "height": 0 1809 | }, 1810 | { 1811 | "tag": "strong", 1812 | "start": 1, 1813 | "end": 24, 1814 | "width": 0, 1815 | "height": 0 1816 | } 1817 | ] 1818 | } 1819 | }, 1820 | { 1821 | "id": "46f3", 1822 | "type": 1, 1823 | "image": { 1824 | "width": 600, 1825 | "height": 600, 1826 | "source": "http://img.qingmang.mobi/image/orion/84f4cffce956bf54315c8269f2648135_600_600.jpeg", 1827 | "inline": false 1828 | } 1829 | }, 1830 | { 1831 | "id": "5549", 1832 | "type": 0, 1833 | "text": { 1834 | "text": "法国艺术礼品品牌 Arteum 推出了 一系列向20世纪艺术大师致敬的周边产品, 这套马格利特 ( Rene Magritte ) 经典作品餐盘在几个艺术品商店都碰到过,集齐6个即可在家中营造小型魔幻主义现实,Arteum 官网有售,11欧。" 1835 | } 1836 | }, 1837 | { 1838 | "id": "6e50", 1839 | "type": 0, 1840 | "text": { 1841 | "text": "▍LEGO Architecture Studio 乐高建筑工作室", 1842 | "markups": [ 1843 | { 1844 | "tag": "strong", 1845 | "start": 0, 1846 | "end": 1, 1847 | "width": 0, 1848 | "height": 0 1849 | }, 1850 | { 1851 | "tag": "strong", 1852 | "start": 1, 1853 | "end": 33, 1854 | "width": 0, 1855 | "height": 0 1856 | } 1857 | ] 1858 | } 1859 | }, 1860 | { 1861 | "id": "2a9b", 1862 | "type": 1, 1863 | "image": { 1864 | "width": 600, 1865 | "height": 324, 1866 | "source": "http://img.qingmang.mobi/image/orion/f81c2807f748b91a1170de012697245d_600_324.jpeg", 1867 | "inline": false 1868 | } 1869 | }, 1870 | { 1871 | "id": "894a", 1872 | "type": 0, 1873 | "text": { 1874 | "text": "这套乐高建筑工作室 21050 有1210块白色积木,可以不依赖说明书随意发挥,建筑爱好者和纯白色控必须入一个,位列我的乐高心愿单榜首,美亚有售 $127 。" 1875 | } 1876 | }, 1877 | { 1878 | "id": "4b66", 1879 | "type": 0, 1880 | "text": { 1881 | "text": "▍旁白 复古手绘植物图谱装饰画", 1882 | "markups": [ 1883 | { 1884 | "tag": "strong", 1885 | "start": 0, 1886 | "end": 1, 1887 | "width": 0, 1888 | "height": 0 1889 | }, 1890 | { 1891 | "tag": "strong", 1892 | "start": 1, 1893 | "end": 15, 1894 | "width": 0, 1895 | "height": 0 1896 | } 1897 | ] 1898 | } 1899 | }, 1900 | { 1901 | "id": "3368", 1902 | "type": 1, 1903 | "image": { 1904 | "width": 600, 1905 | "height": 480, 1906 | "source": "http://img.qingmang.mobi/image/orion/da3fdae13a2c72126050d63ea2ddbb38_600_480.jpeg", 1907 | "inline": false 1908 | } 1909 | }, 1910 | { 1911 | "id": "41a4", 1912 | "type": 0, 1913 | "text": { 1914 | "text": "比利时画家和植物学家,法王路易十六王后的御用画师,被誉为「花之拉斐尔」的 Pierre-Joseph Redoute 皮埃尔-约瑟夫·雷杜德创作的植物图谱,看完才知道鸢尾居然有这么多种… 旁白淘宝店有售¥269 。" 1915 | } 1916 | }, 1917 | { 1918 | "id": "a359", 1919 | "type": 0, 1920 | "text": { 1921 | "text": "▍一切拥有美艳封套的黑胶唱片", 1922 | "markups": [ 1923 | { 1924 | "tag": "strong", 1925 | "start": 0, 1926 | "end": 1, 1927 | "width": 0, 1928 | "height": 0 1929 | }, 1930 | { 1931 | "tag": "strong", 1932 | "start": 1, 1933 | "end": 14, 1934 | "width": 0, 1935 | "height": 0 1936 | } 1937 | ] 1938 | } 1939 | }, 1940 | { 1941 | "id": "0260", 1942 | "type": 0, 1943 | "text": { 1944 | "text": "对于外貌协会成员来说,家里没唱机根本不是问题,找地儿挂着养眼就够了…" 1945 | } 1946 | }, 1947 | { 1948 | "id": "42fb", 1949 | "type": 1, 1950 | "image": { 1951 | "width": 600, 1952 | "height": 359, 1953 | "source": "http://img.qingmang.mobi/image/orion/0d98bef6a6e123b66f439b4f9744613b_600_359.jpeg", 1954 | "inline": false 1955 | } 1956 | }, 1957 | { 1958 | "id": "8446", 1959 | "type": 0, 1960 | "text": { 1961 | "text": "比如之前在木木美术馆和 SANLIPOP 合作设计品店 M Goods 收的这张黑胶唱片,来自一个有爱的法国时尚品牌 Maison Kitsuné 旗下音乐厂牌,画风有点马格利特,跟淘来的各种鸡零狗碎随便搭…" 1962 | } 1963 | }, 1964 | { 1965 | "id": "edeb", 1966 | "type": 0, 1967 | "text": { 1968 | "text": "最后拿2张美国家居品牌 Crate & Barrel 的黑胶唱片场景图和豆列「封面都这么美了唱片能差么」给大家种个草吧。" 1969 | } 1970 | }, 1971 | { 1972 | "id": "6b04", 1973 | "type": 1, 1974 | "image": { 1975 | "width": 600, 1976 | "height": 279, 1977 | "source": "http://img.qingmang.mobi/image/orion/6d99d379d6c7f581135fdd73cf736e29_600_279.jpeg", 1978 | "inline": false 1979 | } 1980 | }, 1981 | { 1982 | "id": "6157", 1983 | "type": 1, 1984 | "image": { 1985 | "width": 600, 1986 | "height": 289, 1987 | "source": "http://img.qingmang.mobi/image/orion/ed75d841a51acb20c3038bcf4d745c7b_600_289.jpeg", 1988 | "inline": false 1989 | } 1990 | }, 1991 | { 1992 | "id": "d990", 1993 | "type": 0, 1994 | "text": { 1995 | "text": "第二弹呕心沥血更到这儿,第三弹已经在酝酿中了。" 1996 | } 1997 | }, 1998 | { 1999 | "id": "1a88", 2000 | "type": 0, 2001 | "text": { 2002 | "text": "看到这儿的都是真爱,请果断转给小伙伴吧 (ง •̀_•́)ง" 2003 | } 2004 | }, 2005 | { 2006 | "id": "2c48", 2007 | "type": 0, 2008 | "text": { 2009 | "text": "觉得本文对你有帮助就在文末给我点个👍吧~" 2010 | } 2011 | }, 2012 | { 2013 | "id": "4f99", 2014 | "type": 1, 2015 | "image": { 2016 | "width": 600, 2017 | "height": 600, 2018 | "source": "http://img.qingmang.mobi/image/orion/857cd0ef0dc3676d35301b38adbd549b_600_600.jpeg", 2019 | "inline": false 2020 | } 2021 | }, 2022 | { 2023 | "id": "53c9", 2024 | "type": 0, 2025 | "text": { 2026 | "text": "长按这只熊关注微信公众号「旁白VoiceOver 」", 2027 | "linetype": "aside" 2028 | } 2029 | }, 2030 | { 2031 | "id": "919c", 2032 | "type": 0, 2033 | "text": { 2034 | "text": "装饰画/家居/设计/艺术/生活方式", 2035 | "linetype": "aside" 2036 | } 2037 | }, 2038 | { 2039 | "id": "d438", 2040 | "type": 1, 2041 | "image": { 2042 | "width": 640, 2043 | "height": 98, 2044 | "source": "http://img.qingmang.mobi/image/orion/a1e17dfe0134483e2abf5de72007abb8_640_98.png", 2045 | "inline": false 2046 | } 2047 | }, 2048 | { 2049 | "id": "6b15", 2050 | "type": 0, 2051 | "text": { 2052 | "text": "小猴纸们,进化论开新号啦!", 2053 | "linetype": "aside" 2054 | } 2055 | }, 2056 | { 2057 | "id": "a90f", 2058 | "type": 0, 2059 | "text": { 2060 | "text": "「重构自己」", 2061 | "markups": [ 2062 | { 2063 | "tag": "strong", 2064 | "start": 0, 2065 | "end": 6, 2066 | "width": 0, 2067 | "height": 0 2068 | } 2069 | ], 2070 | "linetype": "aside" 2071 | } 2072 | }, 2073 | { 2074 | "id": "3403", 2075 | "type": 0, 2076 | "text": { 2077 | "text": "我们会在这里分享所有关于个人成长、自我管理和职场发展的精彩内容。", 2078 | "markups": [ 2079 | { 2080 | "tag": "strong", 2081 | "start": 10, 2082 | "end": 26, 2083 | "width": 0, 2084 | "height": 0 2085 | } 2086 | ] 2087 | } 2088 | }, 2089 | { 2090 | "id": "6b28", 2091 | "type": 0, 2092 | "text": { 2093 | "text": "女神进化论希望帮助更多的女生在变美的路上少走弯路,而「重构自己」的初心就是希望帮助大家从内在进行自我提升,让还在迷茫的年轻人在职场上迅速成长,最终实现物质和精神的双重自由。", 2094 | "markups": [ 2095 | { 2096 | "tag": "strong", 2097 | "start": 26, 2098 | "end": 52, 2099 | "width": 0, 2100 | "height": 0 2101 | } 2102 | ] 2103 | } 2104 | }, 2105 | { 2106 | "id": "ce9d", 2107 | "type": 0, 2108 | "text": { 2109 | "text": "我们反鸡汤,反洗脑,致力于打破你过去错误的认知和观念,重构自己的生活。" 2110 | } 2111 | }, 2112 | { 2113 | "id": "c302", 2114 | "type": 0, 2115 | "text": { 2116 | "text": "如果你喜欢,记得关注「重构自己」,变美赚钱两不误~", 2117 | "markups": [ 2118 | { 2119 | "tag": "strong", 2120 | "start": 10, 2121 | "end": 16, 2122 | "width": 0, 2123 | "height": 0 2124 | } 2125 | ] 2126 | } 2127 | }, 2128 | { 2129 | "id": "d1db", 2130 | "type": 0, 2131 | "text": { 2132 | "text": "长按二维码即可关注", 2133 | "markups": [ 2134 | { 2135 | "tag": "strong", 2136 | "start": 0, 2137 | "end": 9, 2138 | "width": 0, 2139 | "height": 0 2140 | } 2141 | ], 2142 | "linetype": "aside" 2143 | } 2144 | }, 2145 | { 2146 | "id": "311b", 2147 | "type": 1, 2148 | "image": { 2149 | "width": 1022, 2150 | "height": 468, 2151 | "source": "http://img.qingmang.mobi/image/orion/9644c5dd7cb9a4b093f8d7e616cfd997_1022_468.jpeg", 2152 | "inline": false 2153 | } 2154 | }, 2155 | { 2156 | "id": "04ca", 2157 | "type": 0, 2158 | "text": { 2159 | "text": "大家都爱看", 2160 | "markups": [ 2161 | { 2162 | "tag": "strong", 2163 | "start": 0, 2164 | "end": 5, 2165 | "width": 0, 2166 | "height": 0 2167 | } 2168 | ], 2169 | "linetype": "aside" 2170 | } 2171 | }, 2172 | { 2173 | "id": "5fbb", 2174 | "type": 1, 2175 | "image": { 2176 | "width": 696, 2177 | "height": 176, 2178 | "source": "http://img.qingmang.mobi/image/orion/cd21fdd065a830f74f4cfddfe97af70c_696_176.jpeg", 2179 | "inline": false 2180 | } 2181 | }, 2182 | { 2183 | "id": "fca5", 2184 | "type": 1, 2185 | "image": { 2186 | "width": 698, 2187 | "height": 175, 2188 | "source": "http://img.qingmang.mobi/image/orion/c74db4c2a821d4a803df77edcac08bf6_698_175.jpeg", 2189 | "inline": false 2190 | } 2191 | }, 2192 | { 2193 | "id": "9970", 2194 | "type": 1, 2195 | "image": { 2196 | "width": 696, 2197 | "height": 176, 2198 | "source": "http://img.qingmang.mobi/image/orion/7cbbee35e74957ef6d8fb9a1a6383169_696_176.jpeg", 2199 | "inline": false 2200 | } 2201 | }, 2202 | { 2203 | "id": "65ce", 2204 | "type": 1, 2205 | "image": { 2206 | "width": 695, 2207 | "height": 175, 2208 | "source": "http://img.qingmang.mobi/image/orion/1ef0e9f4f1e0d6f9032a47308db1e422_695_175.gif", 2209 | "inline": false 2210 | } 2211 | }, 2212 | { 2213 | "id": "d453", 2214 | "type": 1, 2215 | "image": { 2216 | "width": 695, 2217 | "height": 175, 2218 | "source": "http://img.qingmang.mobi/image/orion/499d19d2e31fd62bedf573b5f7c4e866_695_175.gif", 2219 | "inline": false 2220 | } 2221 | }, 2222 | { 2223 | "id": "7531", 2224 | "type": 1, 2225 | "image": { 2226 | "width": 695, 2227 | "height": 38, 2228 | "source": "http://img.qingmang.mobi/image/orion/e82636a13930119239f3fd821b6a3c01_695_38.jpeg", 2229 | "inline": false 2230 | } 2231 | } 2232 | ] -------------------------------------------------------------------------------- /raml/samples/wx_video_and_link.raml: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "e1dc", 4 | "type": 1, 5 | "image": { 6 | "width": 1500, 7 | "height": 550, 8 | "source": "http://img.qingmang.mobi/image/orion/93e01887467e803f2055e36b592305d0_1500_550.gif", 9 | "inline": false 10 | } 11 | }, 12 | { 13 | "id": "09f0", 14 | "type": 0, 15 | "text": { 16 | "text": "你觉得欧包好吃吗?" 17 | } 18 | }, 19 | { 20 | "id": "1862", 21 | "type": 0, 22 | "text": { 23 | "text": "企鹅君简直是欧包的脑残粉,最爱那种粗糙却质朴的麦香。但有些小伙伴却怎么也吃不惯欧包,要么嫌硬,要么嫌干,要么嫌太过寡淡。" 24 | } 25 | }, 26 | { 27 | "id": "37fe", 28 | "type": 0, 29 | "text": { 30 | "text": "其实,正因为欧包味道清淡,它能玩的花样比普通甜面包更多。咸口欧包可以配三文鱼、芝麻菜、培根等各种配料,做成鲜香四溢的三明治,很多西餐厅都有类似的餐前小食。", 31 | "markups": [ 32 | { 33 | "tag": "strong", 34 | "start": 13, 35 | "end": 27, 36 | "width": 0, 37 | "height": 0 38 | } 39 | ] 40 | } 41 | }, 42 | { 43 | "id": "e407", 44 | "type": 0, 45 | "text": { 46 | "text": "但很少有人想到,揉入果干的微甜欧包,也可以抹上奶油奶酪,搭配烤过的坚果,淋上蜂蜜,作为下午茶点心,比最近的网红奶酪包高级多了。大口咬下,麦香、坚果香与奶酪香一起迸发,酥脆和柔滑的口感交错呈现,甜丝丝暖洋洋,再配一杯红茶,嗯,完美~", 47 | "markups": [ 48 | { 49 | "tag": "strong", 50 | "start": 63, 51 | "end": 115, 52 | "width": 0, 53 | "height": 0 54 | } 55 | ] 56 | } 57 | }, 58 | { 59 | "id": "9855", 60 | "type": 1, 61 | "image": { 62 | "width": 1280, 63 | "height": 720, 64 | "source": "http://img.qingmang.mobi/image/orion/2348d83ca0b204c3317da366fee2096e_1280_720.jpeg", 65 | "inline": false 66 | } 67 | }, 68 | { 69 | "id": "4698", 70 | "type": 0, 71 | "text": { 72 | "text": "做这种欧包三明治,还有个小技巧,就是稍微烤一下欧包,让它变得微微酥脆,趁热吃,口感更好。", 73 | "markups": [ 74 | { 75 | "tag": "strong", 76 | "start": 16, 77 | "end": 44, 78 | "width": 0, 79 | "height": 0 80 | } 81 | ] 82 | } 83 | }, 84 | { 85 | "id": "b078", 86 | "type": 0, 87 | "text": { 88 | "text": "吃奶酪怕胖的,可以换成你喜欢的果酱甚至是香蕉泥,把坚果换成果干或是新鲜水果。要是还嫌热量高……那还是干啃欧包当早饭得了,吃什么下午茶?" 89 | } 90 | }, 91 | { 92 | "id": "11af", 93 | "type": 2, 94 | "media": { 95 | "cover": "http://img.qingmang.mobi/image/orion/d30332825263942a224f69d080e443ed_1275_850.jpeg", 96 | "source": "http://api.qingmang.me/v1/video.redirect?url=https://v.qq.com/iframe/preview.html?vid%3Dz0380plyfsx%26width%3D500%26height%3D375%26auto%3D0", 97 | "title": "" 98 | } 99 | }, 100 | { 101 | "id": "64fc", 102 | "type": 0, 103 | "text": { 104 | "text": "原 料", 105 | "markups": [ 106 | { 107 | "tag": "strong", 108 | "start": 0, 109 | "end": 3, 110 | "width": 0, 111 | "height": 0 112 | } 113 | ], 114 | "linetype": "aside" 115 | } 116 | }, 117 | { 118 | "id": "7385", 119 | "type": 0, 120 | "text": { 121 | "text": "Ingredients", 122 | "markups": [ 123 | { 124 | "tag": "strong", 125 | "start": 0, 126 | "end": 11, 127 | "width": 0, 128 | "height": 0 129 | } 130 | ], 131 | "linetype": "aside" 132 | } 133 | }, 134 | { 135 | "id": "4a63", 136 | "type": 0, 137 | "text": { 138 | "text": "葡萄干欧包……8片", 139 | "linetype": "aside" 140 | } 141 | }, 142 | { 143 | "id": "57af", 144 | "type": 0, 145 | "text": { 146 | "text": "奶油奶酪……约100g", 147 | "linetype": "aside" 148 | } 149 | }, 150 | { 151 | "id": "cf1f", 152 | "type": 0, 153 | "text": { 154 | "text": "坚果(榛子、腰果、核桃等)……约100g", 155 | "linetype": "aside" 156 | } 157 | }, 158 | { 159 | "id": "8989", 160 | "type": 0, 161 | "text": { 162 | "text": "蜂蜜……适量", 163 | "linetype": "aside" 164 | } 165 | }, 166 | { 167 | "id": "4202", 168 | "type": 0, 169 | "text": { 170 | "text": "粗盐……一小撮", 171 | "linetype": "aside" 172 | } 173 | }, 174 | { 175 | "id": "0e17", 176 | "type": 0, 177 | "text": { 178 | "text": "步 骤", 179 | "markups": [ 180 | { 181 | "tag": "strong", 182 | "start": 0, 183 | "end": 3, 184 | "width": 0, 185 | "height": 0 186 | } 187 | ], 188 | "linetype": "aside" 189 | } 190 | }, 191 | { 192 | "id": "77a8", 193 | "type": 0, 194 | "text": { 195 | "text": "Step by step", 196 | "markups": [ 197 | { 198 | "tag": "strong", 199 | "start": 0, 200 | "end": 12, 201 | "width": 0, 202 | "height": 0 203 | } 204 | ], 205 | "linetype": "aside" 206 | } 207 | }, 208 | { 209 | "id": "f987", 210 | "type": 0, 211 | "text": { 212 | "text": "1 | 准备面包", 213 | "markups": [ 214 | { 215 | "tag": "strong", 216 | "start": 0, 217 | "end": 8, 218 | "width": 0, 219 | "height": 0 220 | } 221 | ], 222 | "linetype": "aside" 223 | } 224 | }, 225 | { 226 | "id": "db1d", 227 | "type": 0, 228 | "text": { 229 | "text": "葡萄干欧包切成约1cm左右的片,果干多的甜味重,可以切薄些,果干少的可以切厚些。" 230 | } 231 | }, 232 | { 233 | "id": "7fd7", 234 | "type": 1, 235 | "image": { 236 | "width": 640, 237 | "height": 360, 238 | "source": "http://img.qingmang.mobi/image/orion/9a9866a283a39f99ead61a7165f18643_640_360.gif", 239 | "inline": false 240 | } 241 | }, 242 | { 243 | "id": "773f", 244 | "type": 0, 245 | "text": { 246 | "text": "烤箱预热到180°C,烤1-2分钟至微微酥脆。" 247 | } 248 | }, 249 | { 250 | "id": "d97f", 251 | "type": 1, 252 | "image": { 253 | "width": 640, 254 | "height": 360, 255 | "source": "http://img.qingmang.mobi/image/orion/f5dd81762fb4a561f86f6bf154a4fb7a_640_360.gif", 256 | "inline": false 257 | } 258 | }, 259 | { 260 | "id": "2dfa", 261 | "type": 0, 262 | "text": { 263 | "text": "2 | 夹馅", 264 | "markups": [ 265 | { 266 | "tag": "strong", 267 | "start": 0, 268 | "end": 6, 269 | "width": 0, 270 | "height": 0 271 | } 272 | ], 273 | "linetype": "aside" 274 | } 275 | }, 276 | { 277 | "id": "93e6", 278 | "type": 0, 279 | "text": { 280 | "text": "奶油奶酪放在室温下,软化至可以抹开的状态。" 281 | } 282 | }, 283 | { 284 | "id": "5160", 285 | "type": 1, 286 | "image": { 287 | "width": 640, 288 | "height": 360, 289 | "source": "http://img.qingmang.mobi/image/orion/357e02a56eede814cff3a8b7cb71f1c2_640_360.gif", 290 | "inline": false 291 | } 292 | }, 293 | { 294 | "id": "c588", 295 | "type": 0, 296 | "text": { 297 | "text": "准备适量坚果,榛子、核桃、腰果等你喜欢的种类都可以加进去。" 298 | } 299 | }, 300 | { 301 | "id": "07d5", 302 | "type": 1, 303 | "image": { 304 | "width": 640, 305 | "height": 360, 306 | "source": "http://img.qingmang.mobi/image/orion/d302be8e09e611ec9b05db1451821dcf_640_360.gif", 307 | "inline": false 308 | } 309 | }, 310 | { 311 | "id": "91f4", 312 | "type": 0, 313 | "text": { 314 | "text": "烤箱预热至150°C,放入坚果烤10分钟左右,至坚果飘出香气。如果是已经烤好的坚果可以省略这一步。" 315 | } 316 | }, 317 | { 318 | "id": "6cfc", 319 | "type": 1, 320 | "image": { 321 | "width": 640, 322 | "height": 360, 323 | "source": "http://img.qingmang.mobi/image/orion/c47e780237874e772728205b2e8a29c5_640_360.gif", 324 | "inline": false 325 | } 326 | }, 327 | { 328 | "id": "05b1", 329 | "type": 0, 330 | "text": { 331 | "text": "3 | 组装", 332 | "markups": [ 333 | { 334 | "tag": "strong", 335 | "start": 0, 336 | "end": 6, 337 | "width": 0, 338 | "height": 0 339 | } 340 | ], 341 | "linetype": "aside" 342 | } 343 | }, 344 | { 345 | "id": "2aba", 346 | "type": 0, 347 | "text": { 348 | "text": "欧包片抹上奶油奶酪,放上坚果。" 349 | } 350 | }, 351 | { 352 | "id": "673f", 353 | "type": 1, 354 | "image": { 355 | "width": 640, 356 | "height": 360, 357 | "source": "http://img.qingmang.mobi/image/orion/68665288fe984e0aab318fc9eb582845_640_360.gif", 358 | "inline": false 359 | } 360 | }, 361 | { 362 | "id": "cc0e", 363 | "type": 0, 364 | "text": { 365 | "text": "根据个人口味,淋上适量蜂蜜。" 366 | } 367 | }, 368 | { 369 | "id": "e548", 370 | "type": 1, 371 | "image": { 372 | "width": 640, 373 | "height": 360, 374 | "source": "http://img.qingmang.mobi/image/orion/1de55f73b2dc7053b3b24cf3a94d74c3_640_360.gif", 375 | "inline": false 376 | } 377 | }, 378 | { 379 | "id": "0f14", 380 | "type": 0, 381 | "text": { 382 | "text": "还可以撒一点粗盐,微微的咸与甜碰撞起来,味道会更加有趣。" 383 | } 384 | }, 385 | { 386 | "id": "d6b7", 387 | "type": 1, 388 | "image": { 389 | "width": 640, 390 | "height": 360, 391 | "source": "http://img.qingmang.mobi/image/orion/231e9d1966970e819af9a50eadb6accd_640_360.gif", 392 | "inline": false 393 | } 394 | }, 395 | { 396 | "id": "978f", 397 | "type": 0, 398 | "text": { 399 | "text": "盖上另一片欧包,完成!" 400 | } 401 | }, 402 | { 403 | "id": "dc9f", 404 | "type": 1, 405 | "image": { 406 | "width": 640, 407 | "height": 360, 408 | "source": "http://img.qingmang.mobi/image/orion/b31c4153e170da2b04e609a66d4ace0f_640_360.gif", 409 | "inline": false 410 | } 411 | }, 412 | { 413 | "id": "4ed9", 414 | "type": 0, 415 | "text": { 416 | "text": "导演 | Mandy", 417 | "linetype": "aside" 418 | } 419 | }, 420 | { 421 | "id": "cfc9", 422 | "type": 0, 423 | "text": { 424 | "text": "摄影 | Jason,老王", 425 | "linetype": "aside" 426 | } 427 | }, 428 | { 429 | "id": "05d6", 430 | "type": 0, 431 | "text": { 432 | "text": "文 | 丁小穗", 433 | "linetype": "aside" 434 | } 435 | }, 436 | { 437 | "id": "72d9", 438 | "type": 1, 439 | "image": { 440 | "width": 640, 441 | "height": 360, 442 | "source": "http://img.qingmang.mobi/image/orion/9da624f26455a8f8691875f3d5101cb3_640_360.jpeg", 443 | "inline": false 444 | } 445 | }, 446 | { 447 | "id": "9927", 448 | "type": 0, 449 | "text": { 450 | "text": "她是为我们制作面包的烘焙师sansan,从日本蓝带学成归来。“面少”是她的个人号,在那里,会写过去的面包生活,会贴好玩好看的日子,也会解答大家的厨房问题。她希望可以从少女写到少妇,老奶奶,把更多幸福与大家分享。欢迎关注!" 451 | } 452 | }, 453 | { 454 | "id": "97af", 455 | "type": 0, 456 | "text": { 457 | "text": "直接点击下列关键词,即可查看更多视频", 458 | "markups": [ 459 | { 460 | "tag": "strong", 461 | "start": 0, 462 | "end": 18, 463 | "width": 0, 464 | "height": 0 465 | } 466 | ] 467 | } 468 | }, 469 | { 470 | "id": "daa0", 471 | "type": 0, 472 | "text": { 473 | "text": "人见人爱的蛋料理", 474 | "markups": [ 475 | { 476 | "tag": "strong", 477 | "start": 0, 478 | "end": 8, 479 | "width": 0, 480 | "height": 0 481 | } 482 | ], 483 | "linetype": "aside" 484 | } 485 | }, 486 | { 487 | "id": "93fe", 488 | "type": 0, 489 | "text": { 490 | "text": "北非蛋|水波蛋|牛油果鸡蛋吐司", 491 | "markups": [ 492 | { 493 | "tag": "a", 494 | "start": 0, 495 | "end": 3, 496 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653002613&idx=1&sn=8d5b8f4988ecadd4648d89440ecc1514&chksm=bd44a16d8a33287b04202be3897662fc1397bdfe93329aac8edcc3088a028406c654131b6627&scene=21#wechat_redirect", 497 | "width": 0, 498 | "height": 0 499 | }, 500 | { 501 | "tag": "a", 502 | "start": 4, 503 | "end": 7, 504 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653000791&idx=1&sn=46e6bafa007d1d1c150824d8f302cafb&chksm=bd44ae4f8a332759edbc9f4cacd44cde6b3acaa70396e404a2401b641aa2fa5a703ef4bc1e2d&scene=21#wechat_redirect", 505 | "width": 0, 506 | "height": 0 507 | }, 508 | { 509 | "tag": "a", 510 | "start": 8, 511 | "end": 15, 512 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653001001&idx=1&sn=b065babfa794f9c010bbc45e18255810&chksm=bd44af318a332627227500ca0619b58a88dd6f8b5a7e6def8286a5906821d3c54b1e6e688480&scene=21#wechat_redirect", 513 | "width": 0, 514 | "height": 0 515 | } 516 | ], 517 | "linetype": "aside" 518 | } 519 | }, 520 | { 521 | "id": "2d33", 522 | "type": 0, 523 | "text": { 524 | "text": "魔鬼蛋|美式炒蛋|白煮蛋", 525 | "markups": [ 526 | { 527 | "tag": "a", 528 | "start": 0, 529 | "end": 3, 530 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652992442&idx=1&sn=f4dbed616ff0baaa34fed7dd1a3ed553&scene=21#wechat_redirect", 531 | "width": 0, 532 | "height": 0 533 | }, 534 | { 535 | "tag": "a", 536 | "start": 4, 537 | "end": 8, 538 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652994352&idx=1&sn=f9198757f9e6789ec58ec7886d260ef4&scene=21#wechat_redirect", 539 | "width": 0, 540 | "height": 0 541 | }, 542 | { 543 | "tag": "a", 544 | "start": 9, 545 | "end": 12, 546 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652991333&idx=1&sn=4eb324ce65abb9f3d85fce6d2b49e471&scene=21#wechat_redirect", 547 | "width": 0, 548 | "height": 0 549 | } 550 | ], 551 | "linetype": "aside" 552 | } 553 | }, 554 | { 555 | "id": "fb73", 556 | "type": 0, 557 | "text": { 558 | "text": "欧姆蛋|吐司培根鸡蛋杯 | 鸡蛋布丁 | 法式吐司", 559 | "markups": [ 560 | { 561 | "tag": "a", 562 | "start": 0, 563 | "end": 3, 564 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653003402&idx=1&sn=4092578ff5aa69dbf0c74cbd3bd346cd&chksm=bd44a4928a332d84afaa37505d569ca970b86eedf60fc85a1bb3cc949d1696a2d29cd41cfb16&scene=21#wechat_redirect", 565 | "width": 0, 566 | "height": 0 567 | }, 568 | { 569 | "tag": "a", 570 | "start": 3, 571 | "end": 4, 572 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653003402&idx=1&sn=4092578ff5aa69dbf0c74cbd3bd346cd&chksm=bd44a4928a332d84afaa37505d569ca970b86eedf60fc85a1bb3cc949d1696a2d29cd41cfb16&scene=21#wechat_redirect", 573 | "width": 0, 574 | "height": 0 575 | }, 576 | { 577 | "tag": "a", 578 | "start": 4, 579 | "end": 11, 580 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004457&idx=1&sn=39cf10284da8fd086cbb75e299d8eb9e&chksm=bd4498b18a3311a7fc37e458890e432d137dc73c02d98d2ee03d1d013b67a12efb2e491f8640&scene=21#wechat_redirect", 581 | "width": 0, 582 | "height": 0 583 | }, 584 | { 585 | "tag": "a", 586 | "start": 14, 587 | "end": 18, 588 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004730&idx=1&sn=763735bf2fc7c350119496be498944ab&chksm=bd4499a28a3310b422a40368aba46f368cf293affc6c54d2e57d41e38b241c4aa5981888655d&scene=21#wechat_redirect", 589 | "width": 0, 590 | "height": 0 591 | }, 592 | { 593 | "tag": "a", 594 | "start": 21, 595 | "end": 25, 596 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004937&idx=1&sn=646c0422b94b2ad41c4fdf70c5ccd03e&chksm=bd449e918a33178787a71ef0f98f51557a8e9ac72e7171d2fb09662d14d88278d9ce35d0755f&scene=21#wechat_redirect", 597 | "width": 0, 598 | "height": 0 599 | } 600 | ], 601 | "linetype": "aside" 602 | } 603 | }, 604 | { 605 | "id": "c282", 606 | "type": 0, 607 | "text": { 608 | "text": "燕麦花式吃法", 609 | "markups": [ 610 | { 611 | "tag": "strong", 612 | "start": 0, 613 | "end": 6, 614 | "width": 0, 615 | "height": 0 616 | } 617 | ], 618 | "linetype": "aside" 619 | } 620 | }, 621 | { 622 | "id": "8ef8", 623 | "type": 0, 624 | "text": { 625 | "text": "免烤格兰诺拉Granola|芒果燕麦粥", 626 | "markups": [ 627 | { 628 | "tag": "a", 629 | "start": 0, 630 | "end": 13, 631 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652998511&idx=1&sn=3d503f7fad72a334dc393c041b2413f4&scene=21#wechat_redirect", 632 | "width": 0, 633 | "height": 0 634 | }, 635 | { 636 | "tag": "a", 637 | "start": 14, 638 | "end": 19, 639 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652989489&idx=1&sn=0dea1db3eb120a01b7fd39f74881c363&scene=21#wechat_redirect", 640 | "width": 0, 641 | "height": 0 642 | } 643 | ], 644 | "linetype": "aside" 645 | } 646 | }, 647 | { 648 | "id": "ca60", 649 | "type": 0, 650 | "text": { 651 | "text": "微波炉香蕉燕麦粥|免烤燕麦棒", 652 | "markups": [ 653 | { 654 | "tag": "a", 655 | "start": 0, 656 | "end": 8, 657 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652989489&idx=1&sn=0dea1db3eb120a01b7fd39f74881c363&scene=21#wechat_redirect", 658 | "width": 0, 659 | "height": 0 660 | }, 661 | { 662 | "tag": "a", 663 | "start": 9, 664 | "end": 14, 665 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652990467&idx=1&sn=3531e6d44bf01cadb0c683013e5286bb&scene=21#wechat_redirect", 666 | "width": 0, 667 | "height": 0 668 | } 669 | ], 670 | "linetype": "aside" 671 | } 672 | }, 673 | { 674 | "id": "a5ac", 675 | "type": 0, 676 | "text": { 677 | "text": "简单快手菜", 678 | "markups": [ 679 | { 680 | "tag": "strong", 681 | "start": 0, 682 | "end": 5, 683 | "width": 0, 684 | "height": 0 685 | } 686 | ], 687 | "linetype": "aside" 688 | } 689 | }, 690 | { 691 | "id": "322b", 692 | "type": 0, 693 | "text": { 694 | "text": "田园烤串 | 火腿奶酱三明治|烟熏三文鱼沙拉", 695 | "markups": [ 696 | { 697 | "tag": "a", 698 | "start": 0, 699 | "end": 4, 700 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652990887&idx=1&sn=007e9a6961a12886c37031d6c4e86304&scene=21#wechat_redirect", 701 | "width": 0, 702 | "height": 0 703 | }, 704 | { 705 | "tag": "a", 706 | "start": 7, 707 | "end": 14, 708 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653000005&idx=2&sn=e596527f5cd98ec7037378fe89ef7de2&chksm=bd44ab5d8a33224be35d2a8085b2c5cb1b08b99fd7fcaf33015db839893c67e0a0853b9a66fb&scene=21#wechat_redirect", 709 | "width": 0, 710 | "height": 0 711 | }, 712 | { 713 | "tag": "a", 714 | "start": 15, 715 | "end": 22, 716 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2652997628&idx=1&sn=cb5f654dfe2aae2b10b1d40eb1691693&scene=21#wechat_redirect", 717 | "width": 0, 718 | "height": 0 719 | } 720 | ], 721 | "linetype": "aside" 722 | } 723 | }, 724 | { 725 | "id": "9c24", 726 | "type": 0, 727 | "text": { 728 | "text": "冬季特饮", 729 | "markups": [ 730 | { 731 | "tag": "strong", 732 | "start": 0, 733 | "end": 4, 734 | "width": 0, 735 | "height": 0 736 | } 737 | ], 738 | "linetype": "aside" 739 | } 740 | }, 741 | { 742 | "id": "a3f1", 743 | "type": 0, 744 | "text": { 745 | "text": "热红酒|热巧克力|黄油啤酒|印度拉茶|摩卡咖啡", 746 | "markups": [ 747 | { 748 | "tag": "a", 749 | "start": 0, 750 | "end": 3, 751 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653003018&idx=1&sn=7218a987b86404e42e1f47e0751b188f&chksm=bd44a7128a332e04a29fc4f4f414132ce4b047cbb50d3773381d7504a189ab837818cd901fe6&scene=21#wechat_redirect", 752 | "width": 0, 753 | "height": 0 754 | }, 755 | { 756 | "tag": "strong", 757 | "start": 3, 758 | "end": 4, 759 | "width": 0, 760 | "height": 0 761 | }, 762 | { 763 | "tag": "a", 764 | "start": 4, 765 | "end": 7, 766 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653002887&idx=1&sn=a1e6a03b5f090786ea0d59c1190d33a1&chksm=bd44a69f8a332f894100ca617993a82bd373c77e3b69502d063ed40b7984d6fa4d4b38ae14c5&scene=21#wechat_redirect", 767 | "width": 0, 768 | "height": 0 769 | }, 770 | { 771 | "tag": "a", 772 | "start": 7, 773 | "end": 8, 774 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653002887&idx=1&sn=a1e6a03b5f090786ea0d59c1190d33a1&chksm=bd44a69f8a332f894100ca617993a82bd373c77e3b69502d063ed40b7984d6fa4d4b38ae14c5&scene=21#wechat_redirect", 775 | "width": 0, 776 | "height": 0 777 | }, 778 | { 779 | "tag": "strong", 780 | "start": 8, 781 | "end": 9, 782 | "width": 0, 783 | "height": 0 784 | }, 785 | { 786 | "tag": "a", 787 | "start": 9, 788 | "end": 13, 789 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653002001&idx=1&sn=c29b600bc895deeae283e76cc8bd6878&chksm=bd44a3098a332a1f7f1b4e3b0e8d025a6bce95b7ec27b945ccc6e58b94ba1956c70991b579db&scene=21#wechat_redirect", 790 | "width": 0, 791 | "height": 0 792 | }, 793 | { 794 | "tag": "a", 795 | "start": 14, 796 | "end": 18, 797 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653003589&idx=1&sn=21a03e4ce118f87b3e47fe8b128ddc8a&chksm=bd44a55d8a332c4b833113296aab2d1e5c3f6ea199a25e33d48f1ca781fa21bbc83ac17c5c27&scene=21#wechat_redirect", 798 | "width": 0, 799 | "height": 0 800 | }, 801 | { 802 | "tag": "a", 803 | "start": 19, 804 | "end": 23, 805 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004021&idx=1&sn=9ff6b0a230d36440b937643a7804febf&chksm=bd449aed8a3313fb5a0c767bdc32719e4a5ecfd353331174ed9c5e72b9a2a89a7e914bca2e42&scene=21#wechat_redirect", 806 | "width": 0, 807 | "height": 0 808 | } 809 | ], 810 | "linetype": "aside" 811 | } 812 | }, 813 | { 814 | "id": "4bcf", 815 | "type": 0, 816 | "text": { 817 | "text": "新年特辑|鸡年吃鸡", 818 | "markups": [ 819 | { 820 | "tag": "strong", 821 | "start": 0, 822 | "end": 9, 823 | "width": 0, 824 | "height": 0 825 | } 826 | ], 827 | "linetype": "aside" 828 | } 829 | }, 830 | { 831 | "id": "7854", 832 | "type": 0, 833 | "text": { 834 | "text": "宫保鸡丁|小鸡炖蘑菇|白切鸡", 835 | "markups": [ 836 | { 837 | "tag": "a", 838 | "start": 0, 839 | "end": 4, 840 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004409&idx=1&sn=b56796fff93dcc75b0d1a3bacd150abd&chksm=bd4498618a331177f36d89175785ab6afe2c0b819d4c5ecc941c8d7861faa2bf9790571a07b6&scene=21#wechat_redirect", 841 | "width": 0, 842 | "height": 0 843 | }, 844 | { 845 | "tag": "strong", 846 | "start": 4, 847 | "end": 5, 848 | "width": 0, 849 | "height": 0 850 | }, 851 | { 852 | "tag": "a", 853 | "start": 5, 854 | "end": 10, 855 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004425&idx=1&sn=da1607203f80abf4fa56f201198b50ac&chksm=bd4498918a331187e2c88912bac2ab91b3f24d8c8d4505a58b64d465c4b263df111ff643fc1d&scene=21#wechat_redirect", 856 | "width": 0, 857 | "height": 0 858 | }, 859 | { 860 | "tag": "strong", 861 | "start": 10, 862 | "end": 11, 863 | "width": 0, 864 | "height": 0 865 | }, 866 | { 867 | "tag": "a", 868 | "start": 11, 869 | "end": 14, 870 | "source": "http://mp.weixin.qq.com/s?__biz=MjM5Mzc5NTk1OQ==&mid=2653004444&idx=1&sn=f4b1d4a11daf37543162ce56ce062126&chksm=bd4498848a3311922ab1c55762d87052cd34fca080af9874cf2ada747c36b9f0d2b1f516e698&scene=21#wechat_redirect", 871 | "width": 0, 872 | "height": 0 873 | } 874 | ], 875 | "linetype": "aside" 876 | } 877 | }, 878 | { 879 | "id": "31ca", 880 | "type": 1, 881 | "image": { 882 | "width": 640, 883 | "height": 870, 884 | "source": "http://img.qingmang.mobi/image/orion/dfe0e467a61bbeaa50c1f93d89b475ce_640_870.jpeg", 885 | "inline": false 886 | } 887 | } 888 | ] --------------------------------------------------------------------------------