Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. .Dd $Mdocdate: November Sat 29 2014 $
  2. .Dt TEST 3
  3. Linux
  4.  
  5.  
  6. .Sh DILLINGER
  7. .Pp
  8. \&
  9.  
  10. .Pp
  11. Dillinger is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.
  12.  
  13. .Bl -bullet
  14.  
  15. .It
  16. Type some Markdown on the left
  17.  
  18.  
  19. .It
  20. See HTML in the right
  21.  
  22.  
  23. .It
  24. Magic
  25.  
  26.  
  27. .El
  28.  
  29. .Pp
  30. Markdown is a lightweight markup language based on the formatting conventions that people naturally use in email. As John Gruber http://daringfireball.net/ writes on the Markdown site http://daringfireball.net/projects/markdown/:
  31.  
  32. .Bd -literal -offset ident
  33. ``
  34. .Pp
  35. The overriding design goal for Markdown's
  36. formatting syntax is to make it as readable
  37. as possible. The idea is that a
  38. Markdown-formatted document should be
  39. publishable as-is, as plain text, without
  40. looking like it's been marked up with tags
  41. or formatting instructions.
  42. ``
  43. .Ed
  44.  
  45. .Pp
  46. This text you see here is
  47. .Bf -emphasis
  48. actually
  49. .Ef
  50. written in Markdown! To get a feel for Markdown's syntax, type some text into the left window and watch the results in the right.
  51.  
  52.  
  53. .Sh VERSION
  54. .Pp
  55. \&
  56.  
  57. .Pp
  58. 3.0.2
  59.  
  60.  
  61. .Sh TECH
  62. .Pp
  63. \&
  64.  
  65. .Pp
  66. Dillinger uses a number of open source projects to work properly:
  67.  
  68. .Bl -bullet
  69.  
  70. .It
  71. AngularJS http://angularjs.org - HTML enhanced for web apps!
  72.  
  73.  
  74. .It
  75. Ace Editor http://ace.ajax.org - awesome web-based text editor
  76.  
  77.  
  78. .It
  79. Marked https://github.com/chjj/marked - a super fast port of Markdown to JavaScript
  80.  
  81.  
  82. .It
  83. Twitter Bootstrap http://twitter.github.com/bootstrap/ - great UI boilerplate for modern web apps
  84.  
  85.  
  86. .It
  87. node.js http://nodejs.org - evented I/O for the backend
  88.  
  89.  
  90. .It
  91. Express http://expressjs.com - fast node.js network app framework @tjholowaychuk http://twitter.com/tjholowaychuk
  92.  
  93.  
  94. .It
  95. Gulp http://gulpjs.com - the streaming build system
  96.  
  97.  
  98. .It
  99. keymaster.js https://github.com/madrobby/keymaster - awesome keyboard handler lib by @thomasfuchs http://twitter.com/thomasfuchs
  100.  
  101.  
  102. .It
  103. jQuery http://jquery.com - duh
  104.  
  105.  
  106. .El
  107.  
  108.  
  109. .Sh INSTALLATION
  110. .Pp
  111. \&
  112.  
  113. .Pp
  114. You need Gulp installed globally:
  115.  
  116. .Bd -literal -offset ident
  117. $ npm i -g gulp
  118. .Ed
  119.  
  120. .Bd -literal -offset ident
  121. $ git clone [git-repo-url] dillinger
  122. $ cd dillinger
  123. $ npm i -d
  124. $ mkdir -p public/files/{md,html,pdf}
  125. $ gulp build --prod
  126. $ NODE_ENV=production node app
  127. .Ed
  128.  
  129.  
  130. .Sh PLUGINS
  131. .Pp
  132. \&
  133.  
  134. .Pp
  135. Dillinger is currently extended with the following plugins
  136.  
  137. .Bl -bullet
  138.  
  139. .It
  140. Dropbox
  141.  
  142.  
  143. .It
  144. Github
  145.  
  146.  
  147. .It
  148. Google Drive
  149.  
  150.  
  151. .It
  152. OneDrive
  153.  
  154.  
  155. .El
  156.  
  157. .Pp
  158. Readmes, how to use them in your own application can be found here:
  159.  
  160. .Bl -bullet
  161.  
  162. .It
  163. plugins/dropbox/README.md
  164.  
  165.  
  166. .It
  167. plugins/github/README.md
  168.  
  169.  
  170. .It
  171. plugins/googledrive/README.md
  172.  
  173.  
  174. .It
  175. plugins/onedrive/README.md
  176.  
  177.  
  178. .El
  179.  
  180.  
  181. .Sh DEVELOPMENT
  182. .Pp
  183. \&
  184.  
  185. .Pp
  186. Want to contribute? Great!
  187.  
  188. .Pp
  189. Dillinger uses Gulp + Webpack for fast developing.
  190. Make a change in your file and instantanously see your updates!
  191.  
  192. .Pp
  193. Open your favorite Terminal and run these commands.
  194.  
  195. .Pp
  196. First Tab:
  197.  
  198. .Bd -literal -offset ident
  199. $ node app
  200. .Ed
  201.  
  202. .Pp
  203. Second Tab:
  204.  
  205. .Bd -literal -offset ident
  206. $ gulp watch
  207. .Ed
  208.  
  209. .Pp
  210. (optional) Third:
  211.  
  212. .Bd -literal -offset ident
  213. $ karma start
  214. .Ed
  215.  
  216.  
  217. .Sh TODO'S
  218. .Pp
  219. \&
  220.  
  221. .Bl -bullet
  222.  
  223. .It
  224. Write Tests
  225.  
  226.  
  227. .It
  228. Rethink Github Save
  229.  
  230.  
  231. .It
  232. Add Code Comments
  233.  
  234.  
  235. .It
  236. Add Night Mode
  237.  
  238.  
  239. .El
  240.  
  241.  
  242. .Sh LICENSE
  243. .Pp
  244. \&
  245.  
  246. .Pp
  247. MIT
  248.  
  249. .Pp
  250.  
  251. .Bf -symbolic
  252. Free Software, Hell Yeah!
  253. .Ef
  254.  
  255.  
  256. .Bl -enum
  257.  
  258. .It
  259. aasfd
  260.  
  261.  
  262. .It
  263. asdfkpsdas
  264.  
  265.  
  266. .It
  267. aksdfaoskfasdf
  268.  
  269.  
  270. .It
  271. slkf#
  272.  
  273.  
  274. .El
  275.  
  276. .Pp
  277.  
  278. .Bf -symbolic
  279. test
  280. .Ef
  281.  
  282.  
  283. .Pp
  284.  
  285. .Bf -symbolic
  286.  
  287. .Bf -emphasis
  288. test
  289. .Ef
  290.  
  291. .Ef
  292.  
  293.  
  294. .Pp
  295.  
  296. .Bf -symbolic
  297. test
  298. .Ef
  299.  
  300.  
  301. .Pp
  302.  
  303. .Bf -symbolic
  304.  
  305. .Bf -emphasis
  306. test
  307. .Ef
  308.  
  309. .Ef
  310.  
  311.  
  312. .Pp
  313. s-t-r-i-k-e-t-h-o-u-g-h--m-e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement