博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
markdown编辑器安装
阅读量:5019 次
发布时间:2019-06-12

本文共 3735 字,大约阅读时间需要 12 分钟。

  打算使用MarkDown了,打算整理自己的知识了。

  多年以前,喜欢将自己看到好东西,转载在博客。或者将遇到过的问题以及解决方案,记录在博客。06毕业后为了生活折腾,Tom网上的博客无暇东顾,等稳定闲下心来,重游旧地,怀往昔,念今朝,感叹一切资料付诸东流,无可奈何花落去。

  Tom博客的经历,使我将博客转移到了百度空间,对百度的信赖与网站速度是选择理由。可惜只是两年,百度空间的后续迭代,在自定义布局上改变很大,也有了更多干扰,08年之后基本就弃之不用。

  而近几年来,Markdown在网络上得到了广泛的使用,也逐渐流行开来,很多网站及平台也提供了支持。它的语法简洁明了、学习容易,而且功能比纯文本更强。使用Markdown,结合博客客户端,以及GIT文档管理,在本地、远程、发布之间所心所欲,也更加安全。

 

Markdown 语法教程:

  

  

 

两个GIT文档资源:

  https://github.com/adam-p/markdown-here.wiki.git

  git://gitcafe.com/riku/Markdown-Syntax-CN.git

 

Markdown 免费编辑器

Windows 平台

Linux 平台

Mac 平台

在线编辑器

浏览器插件

  • (Chrome)

高级应用

  • + /

 

另外:vim、pycharm 都有很好的markdown 插件,有兴趣可以一试。

retext File:http://sourceforge.net/projects/retext/files/

retext code: http://sourceforge.net/p/retext/git/ci/master/tree/

 

以下转载:

打算使用MarkDown了,群友推荐使用ReText,基于Python的,同时依赖了Python的几个包,通过easystall可以方便地安装,同时制作了快捷启动方式,网上找了篇文章以备忘。

Installation

  1. Download and install the  of Python (3.3.0:  or ).
  2. Download and install PyQt for your Python version from .
  3. Time to update your computer's Environmental Variables:

    • Click Start, right-click My Computer and select Properties.
    • Click Environment Variables.
    • For System Variables, click New. Then add:

      PYTHONPATH=C:\Python33\Lib\;C:\Python33\Lib\site-packages\
    • Select the System Variable PATH, click Edit.

    • Update the PATH by adding C:\Python33;C:\Python33\Lib\site-packages\PyQt4\bin; to the front of it, like so: PATH=C:\Python33;C:\Python33\Lib\site-packages\PyQt4\bin;etc.
  4. Download and run  which will install distribute package, which provides easy_installtool.

  5. Time to install additional Python libraries.

    • Select Start -> Run cmd then cd \Python33\Tools\Scripts.
    • Enter:

      easy_install Pygmentseasy_install ElementTreeeasy_install Markdown easy_install docutils easy_install Markups
  6. Download and unpack 

  7. Download and unpack 
  8. Place the unpacked icons into the ReText\icons folder
  9. Run cmd then cd to the ReText folder. Then enter: python3 retext.py

Creating a Launch Shortcut

If you wish to ReText to have a Shortcut to start it. Then you can pin it to your Start menu, copy to your Desktop or Quick Launch, etc.

For local installs

  1. Right-click drag-n-drop the retext.py and select "Create shortcuts here"
  2. Adjust the properties of the shortcut
  3. Change the Shortcut tab: Target: C:\python33\pythonw.exe retext.py's path ; Run = minimized ; Change Icon (to whatever you like).
  4. Change the General tab: rename it to "ReText"

If you wish for the python shell box to not appear, you should follow the USB Stick Batch file instructions at the moment.

For USB Sticks

  1. Copy C:\python33 to USB Stick, say U:\python33
  2. Put ReText on the stick
  3. Create the following BAT file: retext.bat

    REM ReText Startup batch fileREM ------------------------- REM determine drive letter of batchfile for /f "delims=\" %%d in ('cd') do set curdrv=%%d echo %curdrv% REM Set ENVs using current drive letter if ENVs not set for USB Sticks REM REM them out if you have the ENVs set set PYTHONPATH=%curdrv%\Python33\Lib;%curdrv%\Python33\Lib\site-packages set PATH=%curdrv%\Python33;%curdrv%\Python33\Lib\site-packages\PyQt4\bin;%PATH% REM Start ReText start /B %curdrv%\Python33\pythonw.exe %CD%\retext.py
  4. Right-click drag-n-drop the retext.bat and select "Create shortcuts here"

  5. Adjust the properties of the shortcut
  6. Change the Shortcut tab: Run = minimized ; Change Icon (to whatever you like)
  7. Change the General tab: rename it to "ReText"

Notables

  • Install performed without a proxy. easy_install requires an internet connection. You're on your own dealing with a proxy. As there's really no Registry Entries, you could install else where and copy to USB Stick and create the batch file.
  • Tested on Windows XP 32-bit. Untested with ActiveState Python, so adjust your steps accordingly.

转载于:https://www.cnblogs.com/kylinfish/p/3843084.html

你可能感兴趣的文章
java之hibernate之session中对象的生命周期
查看>>
java之hibernate之单向的一对多关联映射
查看>>
java之hibernate之加载策略和抓取策略
查看>>
java之hibernate之双向的多对一关联映射
查看>>
java之hibernate之hibernate查询
查看>>
java之hibernate之基于外键的一对一单向关联映射
查看>>
java之spring之helloword
查看>>
java之spring之依赖注入
查看>>
java之hibernate之hibernate缓存
查看>>
java之spring之初始spring
查看>>
java之spring mvc之helloworld
查看>>
asp.net core 系列之静态文件
查看>>
java之spring mvc之Controller配置的几种方式
查看>>
java之spring mvc之数据处理
查看>>
java之spring之配置讲解
查看>>
java之spring之对象的创建
查看>>
java之spring之scope和autowiring
查看>>
微服务之初了解(一)
查看>>
java之spring之spring整合hibernate
查看>>
java之spring之整合ssh
查看>>