File size: 454 Bytes
529e208 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import streamlit as st
from ui.Component import side_bar_links
st.set_page_config(
page_title='工具箱',
page_icon='🔨',
)
with st.sidebar:
side_bar_links()
st.markdown("""
# 自用小工具
## 文本格式化
将PDF中直接复制的文本中的换行符去除,并将引用转化为markdown格式。
## 引用文献生成
处理PUBMED的NLM格式的引用文献,并转化为yaml格式,方便存储在markdown文件中
""")
|