当前位置: 代码迷 >> 综合 >> How to make pure text presentation/ppt (by quqi99)
  详细解决方案

How to make pure text presentation/ppt (by quqi99)

热度:34   发布时间:2023-12-13 09:02:30.0

vim + more

^L                   #press i to enter edit mode, then press Ctrl+L to inut ^L
more -p  test.txt:set textwidth=70
#for the existing lines
v
gq

markdown/marp

https://web.marp.app/

<!-- page_number: true --># 一级标题
## 二级标题
**重点**- 列表1
- 列表2![](图片url)---
Next Page

查看本地md文件

sudo pip install markdownserver
cd onedir then run: sudo markdownserver
then visit: http://localhost:8009/index.md

  相关解决方案