MD Test

MWeb是一款专为Markdown写作、记笔记和静态博客生成设计的软件,支持Mac、iPad和iPhone,采用原生macOS技术打造,界面简洁、性能高效。它支持GFM语法,包括表格、TOC、LaTeX等,并提供丰富的画图库和图片上传服务。MWeb还支持文档库管理,便于笔记整理和个人知识收集。

欢迎使用 MWeb

XXX

```

ZFCollectionViewListController.m

<script src="https://blog-static.cnblogs.com/files/CoderWayne/hyt25.js"></script>
<script type="text/javascript">
window.onresize = function () {
    console.log(window.innerWidth);
    var isDetail = document.getElementById("post_detail");
    if(isDetail) {
        $(".forFlow").css('marginLeft',0);
        if(window.innerWidth<760) {
            $(".forFlow").css('marginTop',70);
        }
        else {
            $(".forFlow").css('marginTop',0);
        }
    }
    else {
        if(window.innerWidth<760) {
            $(".forFlow").css('marginLeft',0);
            $(".forFlow").css('marginTop',70);
        }
        else {
            $(".forFlow").css('marginLeft',255);
            $(".forFlow").css('marginTop',0);
        }
    }
}

$(function(){
    var isDetail = document.getElementById("post_detail");
    if(isDetail) {
        document.getElementById("sideBar").style.display = "none";
        $(".forFlow").css('marginLeft',0);
        if(window.innerWidth<760) {
            $(".forFlow").css('marginTop',70);
        }
        else {
            $(".forFlow").css('marginTop',0);
        }
    }
    else {
        document.getElementById("sideBar").style.display = "block";
        if(window.innerWidth<760) {
            $(".forFlow").css('marginLeft',0);
            $(".forFlow").css('marginTop',70);
        }
        else {
            $(".forFlow").css('marginLeft',255);
            $(".forFlow").css('marginTop',0);
        }
    }
    console.log(window.innerWidth);

    $('#cnblogs_post_body p').each(function (index,element) {
    var content = $(element).text()
     if (/^```/.test(content)) {
        $(element).remove();
        return;
    }
    })
})

$.silence();
</script>

YYY

ZFCollectionViewListController.m

- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    /*逻辑
ab
判断*/ UILabel *label = (UILabel *)[cell viewWithTag:104]; //新加入语句 dispatch_async(dispatch_get_main_queue(), ^{ if((float)totalBytesSent / totalBytesExpectedToSend == 1.0f) { label.text = @"上传成功"; } else { label.text = [NSString stringWithFormat:@"上传中:%.0f%%",100*(float)totalBytesSent / totalBytesExpectedToSend]; } }); }

下面是MD原生

- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    
    UILabel *label = (UILabel *)[cell viewWithTag:104];
    dispatch_async(dispatch_get_main_queue(), ^{
        if((float)totalBytesSent / totalBytesExpectedToSend == 1.0f) {
            label.text = @"上传成功";
        }
        else {
            label.text = [NSString stringWithFormat:@"上传中:%.0f%%",100*(float)totalBytesSent / totalBytesExpectedToSend];
        }
    });
}

MWeb 是专业的 Markdown 写作、记笔记、静态博客生成软件,目前已支持 Mac,iPad 和 iPhone。MWeb 有以下特色:

软件本身:

中间写上想说的话

  • 使用原生的 macOS 技术打造,追求与系统的完美结合。
  • 原则上,首先是追求界面简洁和高性能,然后才是强大易用,功能全面。

Markdown 语法:

  • 使用 Github Flavored Markdown 语法,简称 GFM 语法。
  • 支持表格、TOC、LaTeX、代码块、任务列表、脚注等。
  • 画图库支持 mermaid, viz, echarts, plantuml, sequence, flow。

Markdown 辅助:

  • 支持截图并粘贴、复制并粘贴、拖拽等方式插入图片并直接显示在编辑器内。
  • 在兼容 Markdown 语法的情况下支持设置图片宽度。
  • 好用的表格插入和 LaTeX 书写辅助。

Markdown 输出:

  • 支持导出为图片、HTML、Epub、PDF、RTF、Docx。
  • 支持发布到 Wordrpess、支持 Metaweblog API 协议的服务、Wordpress.com、印象笔记(Evernote)、Blogger、Medium、Tumblr。
  • 图片上传服务(图床)支持 Google Photos、Imgur、七牛云、又拍云和自定义的图床服务。

Markdown 笔记:

  • 强大的文档库支持分类树和标签管理文档,文档可归类于多个分类,可以把分类整个导出为 Epub、PDF 和生成静态网站。非常合适用于笔记、个人知识收集、管理和输出。
  • 快速笔记:随意增加笔记及图片等素材,支持以天为单位把增加的素材组合在一个文档内,方便整理及记录历史收集情况。
  • 快速搜索:目前已支持全局快捷键调出搜索。

外部 Markdown 文档:

  • 外部 Markdown 文档使用外部模式管理。外部模式使用目录树的方式编辑和管理你的 markdown 文档,还能很好的支持 gitbook、JekyII、hexo 等等编辑和图片插入。

MWeb 文档:

如果要更详细了解 MWeb,建议你一定要去看一下官网的帮助文档,网址为:https://zh.mweb.im/help.html。我们建议在使用文档库之前,一定要阅读一下 MWeb 文档库详细介绍 这篇文章,以便更好的使用文档库。

帮助我们改进 MWeb

如果你喜欢 MWeb,想让它变得更好,你可以:

  1. 推荐 MWeb,让更多的人知道。
  2. 给我们发反馈和建议:coderforart+2333@gmail.com
  3. 在 Mac App Store 上评价 (如果是在 MAS 上购买的话)。
<details>
<summary><mark><font color=darkred>点击查看详细内容</font></mark></summary>


</details>

ABCD

CLICK ME ```objc - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend { UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]]; UILabel *label = (UILabel *)[cell viewWithTag:104]; dispatch_async(dispatch_get_main_queue(), ^{ if((float)totalBytesSent / totalBytesExpectedToSend == 1.0f) { label.text = @"上传成功"; } else { label.text = [NSString stringWithFormat:@"上传中:%.0f%%",100*(float)totalBytesSent / totalBytesExpectedToSend]; } }); } ```

转载于:https://www.cnblogs.com/CoderWayne/p/10120541.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值