-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Built in org-mode support? #195
Comments
If you were interested in having support for this, an important place to start could be (defgeneric render-text (text format)
(:documentation "Render TEXT of the given FORMAT to HTML for display.")
(:method (text (format (eql :html)))
text)
(:method (text (format (eql :md)))
(let ((3bmd-code-blocks:*code-blocks* t))
(with-output-to-string (str)
(3bmd:parse-string-and-print-to-stream text str))))) If you find a dependency that does for org what 3bmd does for markdown, then it could be easy to implement. |
Actually look at the Markless and ReStructuredText plugins. |
In theory, there is common-org and/or CL-ORG-MODE which could help ... |
it sounds pretty natural that a lisp blog would use org-mode |
Is there any way or plan of supporting org-mode for blogging? I mean, it is natural to have org-mode support built in for a lisp project :).
The text was updated successfully, but these errors were encountered: