第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

有道云筆記導(dǎo)出到notion

標(biāo)簽:
產(chǎn)品

1 有道云笔记批量导出word

web端登录有道云笔记,需要导出笔记上:右键→导出到word

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d14e5fd8-3ae6-4dc1-b017-6dfbaf381485/Untitled.png

如果文章比较多,一个一个 导出比较麻烦,可以使用js脚本:

自动选择文章→右键→导出为word→滚动列表

脚本使用方法:

  1. chrome浏览器打开note.youdao.com/web/

  2. F12打开开发控制台,切换到Console面板

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/4efa33c1-e1e7-4f84-a97d-0532161012d7/Untitled.png

  3. 拷贝自动导出脚本,粘贴,Enter;等待自动执行即可

  • 自动导出脚本

    var exported = {}
    function warn(obj) {console.warn(obj)}
    function error(obj) {console.error(obj)}
    function send_contextmenu(obj) {
        var rect = obj.getClientRects()[0]
        var evObj = document.createEvent('MouseEvents');
        evObj.initMouseEvent('contextmenu',true,true,window,1,0,0,rect.left,rect.top,false,false,false,false,0,null);
        obj.dispatchEvent(evObj);
    }
    function scrol(obj, y){
        var evt = document.createEvent('MouseEvents');
        evt.initEvent('wheel', true, true);
        evt.deltaY = +y;
        var element = obj;
        element.dispatchEvent(evt);
    }
    var pages = $('.file-item .title');
    function download_page(index) {
        if (index >= pages.length) {
            newpages = $('.file-item .title');
            if (newpages.length > pages.length) {
                pages = newpages
                error('导出下一页,总数:'+index)
            } else {
                error('导出结束,总数:'+index)
            }
        }
        var obj = pages[index]
        var top = obj.getClientRects()[0].top![]()
        if (top>500) {
            scrol($('.abstract-mode')[0], 300)
        }
        var that = $(obj)
        var title = $.trim(that.text());
        if (exported[title]) return;
        console.warn(index+' 导出:'+title)
        send_contextmenu(obj)
        setTimeout(function(){
            var action = $.trim($($('.menu-li .menu-label')[6]).text())
            if (action == '导出为Word') $('.menu-li .menu-label')[6].click()
            else error(action +' 不支持')
            index++
            download_page(index)
        },3000)
    }
    function start() {
        warn('开始导出,总数:' + pages.length)
        download_page(0)
    }
    start()
    

2 word导入notion中

notion中创建一个页面,右上角点点点中选择→import→word,option里面选择 all files:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/fd67a9d5-8974-4474-8f0d-9fab69976416/Untitled.png

导入后是一个一个页面,可以右键Move To 到你想归纳的节点中

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消