website

Address:www.typora.io/

The installation

Select Linux and the installation commands will be displayed as follows:

# or run:
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE

wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -

# add Typora's repository

sudo add-apt-repository 'deb https://typora.io/linux ./'

sudo apt-get update

# install typora

sudo apt-get install typora
Copy the code

upgrade

# upgrade all packages include Typora
sudo apt-get upgrade
# or use
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -

# add Typora's repository
echo -e "\ndeb https://typora.io/linux ./" | sudo tee -a /etc/apt/sources.list
sudo apt-get update

# install typora
sudo apt-get install typora
Copy the code

Common Shortcut keys

Ctrl+1 First order title Ctrl+B font bold Ctrl+2 second order title Ctrl+I font Tilt Ctrl+3 third order title Ctrl+U underline Ctrl+4 fourth order title Ctrl+Home Return to the top of Typora Ctrl+5 fifth order title Ctrl+End returns to the bottom of Typora Ctrl+6 sixth order headings Ctrl+T Create table Ctrl+L Select a sentence Ctrl+K Create a hyperlink Ctrl+D select a word Ctrl+F Search Ctrl+E Select text of the same format Ctrl+H Search and replace Alt+Shift+5 remove line Ctrl+Shift+I Insert picture Ctrl+Shift+M formula block Ctrl+Shift+Q referenceCopy the code