2019百日打卡DAY7

百日Emacs

emacs实现markdown写作的init-markdown.el文件

;;markdown-mode
(autoload 'markdown-mode "markdown-mode"
   "Major mode for editing Markdown files" t)
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
(autoload 'gfm-mode "markdown-mode"
   "Major mode for editing GitHub Flavored Markdown files" t)
(add-to-list 'auto-mode-alist '("README\\.md\\'" . gfm-mode))

;;浏览器预览需要pandoc(Mac上安装命令为:brew install pandoc)
(setq markdown-command "/usr/local/bin/pandoc")

(provide 'init-markdown)

一些比如说插入表格,预览,插入图片链接等快捷键,都在emacs上方的菜单栏里,平时点开看看,顺便记住最好啦。

百日长难句

In Switzerland,for example,a recent study showed that loss of glacial mass because of the warming climate has increased hydroppower production by 3 percent to 4 percent since 1980.[New York Times]

例如,在瑞士,最近的一项研究表明,由于气候变暖导致的冰川质量减少,自1980年以来,水力发电量增加了3%至4%。[纽约时报]

  1. glacial 冰川时期的,冰河时代的 glacier 冰川
  2. hydroppower水力发电
  3. a mass of大量
  4. increase by/to 增长了/到

例如,瑞士一项研究表明,由于气候变暖导致冰川物质减少,自1980年以来,水力发电量增加了3%至4%。

你可能感兴趣的:(2019百日打卡)