<aside> <img src="https://prod-files-secure.s3.us-west-2.amazonaws.com/c020e028-044e-4c11-bdee-290db28bb900/1d2a1288-1aea-4e89-b9a3-7046eec78ad6/9786263336728.jpg" alt="https://prod-files-secure.s3.us-west-2.amazonaws.com/c020e028-044e-4c11-bdee-290db28bb900/1d2a1288-1aea-4e89-b9a3-7046eec78ad6/9786263336728.jpg" width="40px" /> 此為《Notion 全方位管理術:任務管理 x 收支記帳 x 知識筆記 x GhatGPT x Notion AI》書中範例資源,提供讀者進行實作練習,建議搭配書中內容進行閱讀。
</aside>
<aside> <img src="https://yt3.googleusercontent.com/ytc/AIdro_nZCvy4wC4X6Z0SDFTbzMZE-8jOHf7K96eQ1PVt=s900-c-k-c0x00ffffff-no-rj" alt="https://yt3.googleusercontent.com/ytc/AIdro_nZCvy4wC4X6Z0SDFTbzMZE-8jOHf7K96eQ1PVt=s900-c-k-c0x00ffffff-no-rj" width="40px" /> 近期的免費課程
會聊一些關於Notion裡面最有深度和價值的功能
內容會包含:
課程影片會是免費提供的,預計會於 05/08(三) 13:00 於 iThome 平台首播
預約課程:https://url.o-w-o.cc/ithome-notion-0508
首播當下我也會在留言區和大家互動,然後 iThome 有提供首播參加的超商商品卡和簽名書進行抽獎,剛好有空的也可以來玩個( ´▽` )ノ
「什麼?Notion竟然還能這樣用?」——用30分鐘帶你探索Notion的潛力 - iT+ :: 看影片追技術,陪你走上大神之路
</aside>
擷取資料庫1天數
substring( /*使用substring取得片段*/
prop("title"), /*第1個參數為輸入字串*/
4,6 /*第2、3個參數為開始和結束位置*/
).toNumber() /*最後把取出的文字轉換成數字*/
擷取資料庫1主題
let(
/*設定變數為title_reg*/
title_reg,
/*使用regex去找到主題內容*/
first(match(prop("title"), "\\-[^】]+")),
/*移除第一個符號*/
substring(title_reg, 1)
)
合併顯示資料庫1內容
/*主題,加上超連結,設定為粉色*/
style(
link(prop("主題"), prop("link")),
"pink"
)
/*中間加上冒號*/
+ ": "
/*瀏覽數加上樣式設定*/
+ style(
prop("views"),
"b", "green", "green_background"
)
擷取資料庫2主題
let(
/*設定變數為title_reg*/
title_reg,
/*使用regex去找到主題內容*/
first(match(prop("Name"), "-[^?]+")),
/*移除第一個符號*/
substring(title_reg, 1)
)
合併顯示資料庫2內容