-
Notifications
You must be signed in to change notification settings - Fork 1
/
MWeb-cat_1.html
947 lines (623 loc) · 31.2 KB
/
MWeb-cat_1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
MWeb - Coder For Art
</title>
<link href="atom.xml" rel="alternate" title="Coder For Art" type="application/atom+xml">
<link rel="stylesheet" href="asset/css/foundation.min.css" />
<link rel="stylesheet" href="asset/css/docs.css" />
<script src="asset/js/vendor/modernizr.js"></script>
<script src="asset/js/vendor/jquery.js"></script>
<script type="text/javascript">
function before_search(){
var searchVal = 'site:coderforart.com ' + document.getElementById('search_input').value;
document.getElementById('search_q').value = searchVal;
return true;
}
</script>
</head>
<body class="antialiased hide-extras">
<div class="marketing off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<section class="top-bar-section">
<div class="row">
<div style="position: relative;width:100%;"><div style="position: absolute; width:100%;">
<ul id="main-menu" class="left">
<li id="menu_item_index"><a target="_self" href="index.html">Home</a></li>
<li id="menu_item_archives"><a target="_self" href="archives.html">Archives</a></li>
<li id="menu_item_about"><a target="_self" href="about.html">About</a></li>
</ul>
<ul class="right" id="search-wrap">
<li>
<form target="_blank" onsubmit="return before_search();" action="https://google.com/search" method="get">
<input type="hidden" id="search_q" name="q" value="" />
<input tabindex="1" type="search" id="search_input" placeholder="Search"/>
</form>
</li>
</ul>
</div></div>
</div>
</section>
</nav>
<nav class="tab-bar show-for-small">
<a href="javascript:void(0)" class="left-off-canvas-toggle menu-icon">
<span> Coder For Art</span>
</a>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><a target="_self" href="index.html">Home</a></li>
<li><a target="_self" href="archives.html">Archives</a></li>
<li><a target="_self" href="about.html">About</a></li>
<li><label>Categories</label></li>
<li><a href="Cocoa.html">Cocoa</a></li>
<li><a href="CG%20Artist.html">CG Artist</a></li>
<li><a href="Game%20Engine.html">Game Engine</a></li>
<li><a href="MWeb-cat.html">MWeb</a></li>
<li><a href="PinPhoto-cat.html">PinPhoto</a></li>
</ul>
</aside>
<a class="exit-off-canvas" href="#"></a>
<section id="main-content" role="main" class="scroll-container">
<script type="text/javascript">
$(function(){
$('#menu_item_index').addClass('is_active');
});
</script>
<div class="row">
<div class="large-8 medium-8 columns">
<div class="markdown-body home-categories">
<div class="article">
<a class="clearlink" href="mweb-for-ios-test.html">
<h1>MWeb for iOS 测试版介绍</h1>
<div class="a-content">
<div class="a-content-text">
MWeb for iOS 今天终于可以拿出来测试了,介绍一下大概情况。
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="mweb-for-ios-test.html">Read more</a>
<span class="date">2016/12/08</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-for-ios-test.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="14730440789266.html">
<h1>分享一个把 HTML 转换成印象笔记格式的库,支持代码高亮和把 ECharts、mermaid 转成印象笔记支持的图片,另外:MWeb 半价促销一周。</h1>
<div class="a-content">
<div class="a-content-text">
<p>先说说 html2enml 这个库,github 网址:<a href="https://github.com/cyhhao/html2enml">https://github.com/cyhhao/html2enml</a>。</p>
<p>这个库是由 <a href="http://weibo.com/u/1587579460">cyhhao</a> 特意为 MWeb 做的,但是我觉得对于有分享到印象笔记功能需求的朋友非常有用,所以分享出来。</p>
<p>这个库的原理和用法在作者的 github 中有详细说明了,我这里主要说说在套进 MWeb 过程中遇到的小问题的解决方案。</p>
<p>第一个问题是 SVG 问题,Mermaid 是用 SVG 而不是 Canvas 画图的,不能直接像 Canvas 这样转。解决这个问题花了不少时间,但是其实很简单。只需要在增加 inline 样式后,再用以下代码就可以搞定了:</p>
<pre><code class="language-javascript">$('svg').each(function(){
var ele = $(this);
var w = ele.width();
var serializer = new XMLSerializer();
var source = serializer.serializeToString(this);
$('<img src="data:image/svg+xml;charset=utf8,'+encodeURIComponent(source) +'" />').whith(w).insertAfter(ele);
ele.parent().removeAttr('data-processed');
ele.remove();
});
</code></pre>
<p>另外就是,印象笔记的 enml 格式实际上是一个 xml,但是一般的 html 都不会严格按照 xml 格式,这就要转化为 xml 格式,测试下来,我发现以下代码的方法非常合适而且好用,代码如下:</p>
<pre><code class="language-javascript">var html = $('body').html();
var bodyStyle = $('body').attr('style'); if(!bodyStyle) bodyStyle = '';
var htmlString = "<div style=\"" + bodyStyle + "\">" + html + "</div>";
var doc = new DOMParser().parseFromString(htmlString, 'text/html');
var result = new XMLSerializer().serializeToString(doc);
</code></pre>
<p>最后做一下广告:MWeb 半价促销一周 (9/5~9/11),¥98 --> ¥50!这次应该是今年最后一次促销了,需要的朋友不要错过了!</p>
<p>MWeb 官网:<a href="http://zh.mweb.im/">http://zh.mweb.im/</a><br/>
MAS :<a href="https://itunes.apple.com/cn/app/mweb-pro-markdown-writing/id954188948?l=zh&ls=1&mt=12">https://itunes.apple.com/cn/app/mweb-pro-markdown-writing/id954188948?l=zh&ls=1&mt=12</a></p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2016/09/05</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/14730440789266.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="mweb-2.0.7-release.html">
<h1>MWeb 2.0.7 版发布!</h1>
<div class="a-content">
<div class="a-content-text">
<p>更新前针对 MAS 上的评论重点说一下:MWeb 是支持直接对本地文件夹操作的,不用导入到文档库!请使用外部模式!请使用外部模式!!请使用外部模式!!! 重要的话讲三次!使用方法是 CMD + E 打开外部模式并把文件夹拖进左侧即可。</p>
<p><strong>重要说明:</strong> Mac App Store 版已提交审核,还没正式发布,想必明天应该是能通过。官网版已经可以更新了。</p>
<p>这次的更新主要是修正一些 bug, 详细为:</p>
<ul>
<li>加把 HTML 粘贴为 Markdown 的功能,在菜单: 编辑 - 把 HTML 粘贴为 Markdown。提示:此功能可以快速把网页上的内容保存为 markdown,下面有 gif 演示。</li>
<li>加支持打开所有扩展名的文档。</li>
<li>加重新加载文档库的功能,菜单:文件 - 重新加载文档库。</li>
<li>加:当当前视图模式为仅预览模式时,用 CMD + P 会打印当前预览的结果。</li>
<li>正 CMD + Shift + S 复制文件的 bug</li>
<li>正预览可能会变空白的问题</li>
<li>正在表格编辑中,如果有 LaTex 公式,再编辑时公式会出问题的 bug。</li>
<li>它的一些 Bug 修正和性能提高。</li>
</ul>
<h2 id="toc_0">把 HTML 粘贴为 Markdown 功能演示:</h2>
<p>这个功能默认会把远程的图片保存到本地,如果你不想保存图片,可以使用 CMD + Shift + N 新建文档再用此功能。</p>
<p><img src="media/14696141258529/demoHtmlToMarkdown.gif" alt=""/></p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2016/07/27</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-2.0.7-release.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="14689205256580.html">
<h1>自定义预览样式,让 MWeb 支持 ECharts、mermaid、PlantUML 等任何 JS 画图库</h1>
<div class="a-content">
<div class="a-content-text">
<p>之前 MWeb 2.0 说要支持 PlantUML,后来又否定了,因为我发现大部分朋友只需要自定义预览样式就可以做到的这种 PlantUML 支持,而早在 MWeb 1.2 版都支持了自我增加这功能了,介绍文章为:<a href="http://zh.mweb.im/mweb-v1.2-release-zh.html">自定预览 CSS</a>。2.0 中的自定预览功能有所变化,这也是今天要介绍的内容。</p>
<p>今天要说的是一步到位,做一个支持 ECharts、mermaid、PlantUML 这三个常用的画图库的预览样式。如果你不想看到制作方法,只想使用,可以直接下载 (<a href="media/14689205256580/sample-custom-html-charts.zip">>>点此下载<<</a>) 这个预览样式(如果你的主题中已有名称为 sample-custom-html-charts 的样式,可以直接用这个,不用下载了),解压后,把整个文件夹复制到 MWeb 的预览样式所在文件夹,然后点一下刷新按钮即可。 你可以在 <code>偏好设置</code> - <code>主题&样式</code> 中点一下 <code>预览样式</code> 右边的编辑按钮来打开预览样式所以文件夹。这个预览样式中还包含了一个测试的 Markdown 文档,用 MWeb 打开这个文档,然后选择这个预览样式并预览就可以看到效果。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="14689205256580.html">Read more</a>
<span class="date">2016/07/19</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/14689205256580.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="mweb-2.0-release.html">
<h1>MWeb 2.0 版正式发布,¥50 促销一周,一周后将变为 ¥98,所以也算 50% OFF 了!</h1>
<div class="a-content">
<div class="a-content-text">
<p>MWeb 2.0 版为重大升级版,这个版本主要为:</p>
<ul>
<li>文档库支持自定义保存位置(现在可以把文档库保存到网盘来同步了)。偏好设置 - 通用设置 中可以设置</li>
<li>文档库和外部模式都增加 Tabs 支持</li>
<li>文档库支持 Tags</li>
<li>增加工具栏</li>
<li>重新设计了文档大纲和文档库的文档属性设置方式</li>
<li>改进表格编辑和插入功能,提供了 UI 界面并支持全键盘操作,使用方式: <code>Ctrl + Shift + T</code> 或按工具栏的插入表格按钮。</li>
<li>UI 有所调整。</li>
</ul>
<p>这次发布我做了一个介绍视频,基本上把 MWeb 的功能和使用都演示了一下,包括 2.0 版的功能,感兴趣的朋友可以去以下地址看看:</p>
<ul>
<li>B 站(bilibili)地址:<a href="http://www.bilibili.com/video/av5366059/">http://www.bilibili.com/video/av5366059/</a></li>
<li>Youtube 地址:<a href="https://www.youtube.com/watch?v=85RwOuxthoE">https://www.youtube.com/watch?v=85RwOuxthoE</a></li>
</ul>
<p>当然,视频也放上官网了。</p>
<h2 id="toc_0">Product Hunt 上求投票!</h2>
<p>这次在 <a href="http://weibo.com/liuyi0922">@im61</a> 的帮助下,分享到了 Product Hunt !网址:<a href="https://www.producthunt.com/tech/mweb">https://www.producthunt.com/tech/mweb</a> MWeb 在国外推广非常艰难,目前我仅知道 Product Hunt,所以这次对 MWeb 的发展非常重要!希望各位帮助一下!</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="mweb-2.0-release.html">Read more</a>
<span class="date">2016/07/17</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-2.0-release.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="mweb-2.0-beta.html">
<h1>MWeb 2.0 测试版可以下载啦,这次是公开测试,感兴趣的朋友可以试试</h1>
<div class="a-content">
<div class="a-content-text">
<p>2.0 版是 MWeb 发布以来,最重要的一个版本。MWeb 自去年一月份发布以来,获得了很多朋友的建议,在此非常感谢!没有你们,2.0 版可能就不能出来!然后再次感谢 Producter: <a href="http://weibo.com/u/5642390620">http://weibo.com/u/5642390620</a> 为 MWeb 设计的图标!</p>
<p>2.0 改动蛮多的,用写的可能表达不大好,我本想录个视频的,但是录起来效果更渣,只好再用写的了。。</p>
<p>新版的 MWeb 界面如下,这个版本终于是可以自定义文档库的位置了,可以打开 <code>偏好设置</code> - <code>通用设置</code> 里设置文档库的位置。另外也增加了 Tabs 功能,MWeb 的 Tabs 的功能设计得跟 Sublime 相同,就是一个窗口中会有一个可替换的 Tab,用点击第二栏的列表时,会使用这个可替换的 Tab 显示点击的文档。如下图,如果用 <code>右键</code> - <code>在新标签中打开</code> 或者双击则会打开一个固定的新 Tab。<br/>
<img src="media/14675942852243/14676035760371.jpg" alt=""/></p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="mweb-2.0-beta.html">Read more</a>
<span class="date">2016/07/04</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-2.0-beta.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="mweb-1.9.7-release.html">
<h1>MWeb 1.9.7 发布!这次增加了一个有意思的改进,有必要说一下。</h1>
<div class="a-content">
<div class="a-content-text">
<h2 id="toc_0">有必要说明的预览方面的改进</h2>
<p><img src="media/14564575040860/14564576891742.jpg" alt="w491"/></p>
<p>这次的改进跟上图中的两个选项有关。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="mweb-1.9.7-release.html">Read more</a>
<span class="date">2016/02/26</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-1.9.7-release.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="mweb-1.9.3-release.html">
<h1>MWeb 1.9.3 发布!图床支持七牛、修正发布到 Wordpress https 问题、中文版不能发布到 Medium 问题等</h1>
<div class="a-content">
<div class="a-content-text">
<h2 id="toc_0">详细更新说明:</h2>
<p>新增:</p>
<ul>
<li>图床功能现在支持七牛 (qiniu.com) 了</li>
<li>文档库增加清倒废纸篓功能</li>
<li>全屏快捷键:Control + CMD + F</li>
<li>发布到印象笔记时会记住上一次选择的笔记本</li>
</ul>
<p>修正:</p>
<ul>
<li>发布到 Wordpress 和 MetaWeblog API 不支持 https 问题</li>
<li>中文版不能发布到 Medium 问题</li>
<li>导出 PDF 选择带目录时某些情况下目录结构不对问题</li>
<li>特殊文档不能正确解析问题(CPU 100%,切换文档不能显示)</li>
<li>像 wow_great_stuff 这种写法不会解析成下划线了</li>
<li>其它一些 Bug 修正和细节改进。</li>
</ul>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="mweb-1.9.3-release.html">Read more</a>
<span class="date">2016/01/19</span>
<span>posted in </span>
<span class="posted-in"><a href='MWeb-cat.html'>MWeb</a></span>
</div>
<div class="more-right right">
<span class="comments">
<a href="http://coderforart.com/mweb-1.9.3-release.html#disqus_thread">comments</a>
</span>
</div>
</div>
</div><!-- article -->
<div class="row">
<div class="large-6 columns">
<p class="text-left" style="padding-top:25px;">
<a href="MWeb-cat.html">« Prev Page</a>
</p>
</div>
<div class="large-6 columns">
<p class="text-right" style="padding-top:25px;">
<a href="MWeb-cat_2.html">» Next Page</a>
</p>
</div>
</div>
</div>
</div><!-- large 8 -->
<div class="large-4 medium-4 columns">
<div class="hide-for-small">
<div id="sidebar" class="sidebar">
<div id="site-info" class="site-info">
<div class="site-a-logo"><img src="media/14195170907881/icon.jpg" /></div>
<h1>Coder For Art</h1>
<div class="site-des">I'm an indie Mac/iOS developer, also want to be a CG artist</div>
<div class="social">
<a target="_blank" class="weibo" href="http://weibo.com/oulvhai" title="weibo">Weibo</a>
<a target="_blank" class="twitter" target="_blank" href="http://twitter.com/oulvhai" title="Twitter">Twitter</a>
<a target="_blank" class="github" target="_blank" href="https://github.com/oulvhai" title="GitHub">GitHub</a>
<a target="_blank" class="rss" href="atom.xml" title="RSS">RSS</a>
</div>
</div>
<div id="site-categories" class="side-item ">
<div class="side-header">
<h2>Important</h2>
</div>
<div class="side-content">
<div style="color:#ff0000; text-align:center; padding:8px;" class="bg-info site_notice">
<a style="color:#ff0000;" onclick="ga('send','event','global_notice_click');" href="https://zh.mweb.im/mweb3x-release-note.html" >MWeb 3 发布后 2.x 版维护说明及两者之间的功能对比!</a>
</div>
</div>
</div>
<div id="site-categories" class="side-item ">
<div class="side-header">
<h2>Categories</h2>
</div>
<div class="side-content">
<p class="cat-list">
<a href="Cocoa.html"><strong>Cocoa</strong></a>
<a href="CG%20Artist.html"><strong>CG Artist</strong></a>
<a href="Game%20Engine.html"><strong>Game Engine</strong></a>
<a href="MWeb-cat.html"><strong>MWeb</strong></a>
<a href="PinPhoto-cat.html"><strong>PinPhoto</strong></a>
</p>
</div>
</div>
<div id="site-categories" class="side-item">
<div class="side-header">
<h2>Recent Posts</h2>
</div>
<div class="side-content">
<ul class="posts-list">
<li class="post">
<a href="mweb3-release-note.html">MWeb 3.0 测试版更新情况</a>
</li>
<li class="post">
<a href="mweb3.0-on-test.html">MWeb 3.0 测试版终于发布了!欢迎大家试用!</a>
</li>
<li class="post">
<a href="15113184658847.html">MWeb for Mac, iOS 黑五半价促销一周,写个大概介绍。</a>
</li>
<li class="post">
<a href="mweb-ios-2.3.2-release.html">MWeb for iOS 2.3.2 发布!</a>
</li>
<li class="post">
<a href="how_to_use_images_in_mweb.html">MWeb Mac 版和 iOS 版图片及图床使用完全指南</a>
</li>
</ul>
</div>
</div>
</div><!-- sidebar -->
</div><!-- hide for small -->
</div><!-- large 4 -->
</div><!-- row -->
<div class="page-bottom clearfix">
<div class="row">
<p class="copyright">Copyright © 2015
Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a>,
Theme used <a target="_blank" href="http://github.com">GitHub CSS</a>.</p>
</div>
</div>
</section>
</div>
</div>
<style type="text/css">
figure{margin: 0;padding: 0;}
figcaption{text-align:center;}
/* PrismJS 1.14.0
http://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background:#b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #F7F7F7;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre[class*="language-"].line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre[class*="language-"].line-numbers > code {
position: relative;
white-space: inherit;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
</style>
<script type="text/javascript">
var disqus_shortname = 'coderforart';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<script type="text/javascript">
var disqus_shortname = 'coderforart';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<script src="asset/js/foundation.min.js"></script>
<script>
$(document).foundation();
function fixSidebarHeight(){
var w1 = $('.markdown-body').height();
var w2 = $('#sidebar').height();
if (w1 > w2) { $('#sidebar').height(w1); };
}
$(function(){
fixSidebarHeight();
})
$(window).load(function(){
fixSidebarHeight();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58735702-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>