Displaying 20 results from an estimated 21 matches for "freewisdom".
2008 Mar 10
2
Create Slide Shows (PowerPoint/KeyNote-Style) Using Markdown using the Slide Show (S9) Ruby Gem
Hello,
I've published a Ruby gem that lets you create slide shows and
author slides in plain text using a wiki-style markup language that's
easy-to-write and easy-to-read. Yes, that's Markdown. (Textile is
supported too ;-)
You can find two samples online in Markdown:
o http://slideshow.rubyforge.org/svn/samples/rest.text
o
2009 Mar 09
0
Python-Markdown 2.0 Release Candidate
...dated documentation is
available in the `doc/` directory in the source files. Hopefully, all
the included extensions will be documented before the final release.
[download]: https://sourceforge.net/project/showfiles.php?group_id=153041&package_id=183331&release_id=666767
[bugs]: http://www.freewisdom.org/projects/python-markdown/Tickets
[site]: http://www.freewisdom.org/projects/python-markdown
Release Notes:
===========
* Major refactor of the core and extension API. Extension authors
should see the included documentation in
`docs/writing_extensions.txt`. All parts of the syntax are now
comp...
2007 Oct 08
1
An Extra for Python (was: Re: seemingly no good way to end bulleted list and start code block)
...bugs. Once those are out of the way, I'll focus on making
extending the 'core' functions easier. If you'd like to help, or have
any feature requests, please bring them up on the project-list [3]
and/or tracker [4]. I follow this list too, so here's fine as well.
[1]: http://www.freewisdom.org/projects/python-markdown/Extensions
[2]: http://achinghead.com/projects/
[3]: http://sourceforge.net/mailarchive/forum.php?forum_name=python-markdown-discuss
[4]: http://sourceforge.net/tracker/?group_id=153041
PS: We had intended on making an official announcement, but wanted to
clean some th...
2006 Apr 07
0
odt2txt: OpenDocument to Markdown
...t files to Markdown.
Being able to do "odt2txt.py mydoc.odt | less" is the main motivation,
but it also works for doing command line conversion of odt to html by
combining odt2txt with any of the Markdown implementations.
If anyone uses OpenOffice and wants to check it out:
http://www.freewisdom.org/projects/python-markdown/odt2txt.php
- yuri
--
http://www.freewisdom.org/
2006 Jul 08
2
numbered list bug in markdown.pl?
...d bug here</li>
<li>It's really bothering me</li>
</ol></li>
</ol>
Interestingly, I don't get this from the [python markdown][1], instead
getting one list, as desired.
Anyone know what's up? Or has this already been fixed?
-Jacob
[1]: http://www.freewisdom.org/projects/python-markdown/
2007 Nov 03
3
ANN: python-markdown2 -- another Python implementation of Markdown
Hello all,
I'm announcing python-markdown2 -- another Python implementation of
Markdown. (MIT license.)
http://code.google.com/p/python-markdown2/
It should be a drop-in replacement for
[markdown.py](http://www.freewisdom.org/projects/python-markdown/). It
fixes some issues that I ran into with markdown.py [^1]. I believe
that it is faster than markdown.py [^2] and on par or a little faster
than Markdown.pl.
It is basically a re-write of Markdown.pl in Python and generally
generates the *exact same* output as Markd...
2008 May 12
2
Fenced-Code-Blocks in Python-Markdown
I'd like to announce a beta release of the Fenced-Code-Blocks
Extension for Python-Markdown.
<http://www.freewisdom.org/projects/python-markdown/Available_Extensions>
The latest code for Python-Markdown and packaged extensions are now
available on Gitorious.
<http://gitorious.org/projects/python-markdown>
The same syntax is used as the just released PHP Markdown Extra 1.2. I
did add the option to def...
2008 Feb 13
3
Syntax for extensions
Hello,
I need to to slightly extend the markdown syntax. (place an image (img tag)
in text which URL has not yet been determined). Therefore I want to define
something like $[Alt text](img.jpg) which would be replaced by my
pre-processor with ![Alt text](/path/to/img.jpg) and then sent to markdown.
Is there any special syntax that should be used for such 3rd party extensions?
How would you do
2008 Mar 22
7
Babelmark
I'm currently attempting to write a spec for parsing Markdown Extra,
and since one goal is to minimize the differences in output between
implementations, I've made a tool allowing me to compare who does what
for any given input. I hope this can also facilitate future
discussions about the syntax.
So here's Babelmark, a testbed for various Markdown implementations
were you
2008 Feb 29
4
evolving the spec (was: forking Markdown.pl?)
...e on the answers, incorporate them into
a spec. Perhaps we can use the wiki at http://markdown.infogami.com/
for this.
(BTW, I just cleaned up the wiki removing links to unrelated sites and
reorganizing the rest into what seemed like a more coherent set of
categories.)
- yuri
--
http://sputnik.freewisdom.org/
2008 May 16
2
Parsing Code Blocks
I've rewritten the code block grammar in the Markdown Extra [spec][]
to match what Markdown.pl and PHP Markdown do. It should now handle
things such as this:
~~~
> One
Two
> Three
Four
Five
~~~
as one blockquote containing only one code block with five lines,
equivalent to this one (using fenced code blocks instead for clarity):
~~~
> One
>
2009 Apr 07
1
Python-Markdown 2.0 Final Released!
I am happy to announce the release of Python-Markdown 2.0 final. We
have versions for Python 2.3-2.6 and Python 3.0!
See the release notes here:
https://sourceforge.net/project/shownotes.php?release_id=674043&group_id=153041
Download from PyPI here:
http://pypi.python.org/pypi/Markdown/2.0
--
----
\X/ /-\ `/ |_ /-\ |\|
Waylan Limberg
2010 Feb 04
1
markdown's reference links with the implicit name syntax - improvement suggestion?!?
I like to use markdown's reference links with the implicit name syntax. It allows keeping a table of links seperate from the referencing link.
However, what I don't like is that I have no way of (optionally) including the table of links in the markdown's output.
For instance, in the example:
I get 10 times more traffic from [Google][] than from
[Yahoo][] or [MSN][].
[google]:
2006 May 02
2
Bug: invalid nesting of inline markup across link labels
Hi John,
there?s a bug in Markdown.pl:
[foo*bar](#) [baz*quux](#)
This expands to the following:
<p><a href="#">foo<em>bar</a> <a href="#">baz</em>quux</a></p>
Those `*` should either be disregarded or the tags should nest
correctly:
1. <p><a href="#">foo*bar</a> <a
2011 Feb 13
1
Should leading and trailing spaces between backticks be preserved?
Hi folks,
Yesterday I raised an issue about inconsistent preservation of
whitespace<http://www.freewisdom.org/projects/python-markdown/Tickets/000087>in
Python-Markdown.
>>> import markdown
>>> md = markdown.Markdown()
>>> md.convert('Added `>>> ` to signify user input.')
u'<p>Added <code>>>></code&g...
2008 Nov 28
3
Extra markdown suggestions
Hello List,
I have recently started using Michel Fortin's PHP "Markdown Extra"
implementation to programmatically transform my markdown text files into
HTML. Firstly I'd like to say markdown is very cool -- thanks to everyone
involved :)
I'd also like to suggest two additions to markdown:
1) I very often use /this/ markdown to indicate emphasis since I find it
much
2008 May 09
5
Markdown Extra Spec: Parsing Section
Hello all,
I've began writing the parsing section of the spec, and I though I'd
let you know about where I'm heading with all this.
Basically, parsing is defined as three consecutive passes: parsing
document elements, parsing block elements and parsing span elements.
Each pass is going to contain a set of rules the parser should attempt
to match while parsing the input. Rules
2008 Jan 05
2
replacing " with "
Python-markdown currently replaces all straight quotes (`"`) with the
html entity (`"`). Someone recently complained about this in a
[bug report][]. As it turns out the quote was the symptom that brought
the real problem to light[^1]. In any event, the reporter pointed out
that markdown.pl does not replace straight quotes with the html
entity. I know John Gruber has mentioned before
2007 Sep 27
0
Math equations, and extensions in general
...-Markdownish.
- [Pandoc][] handles LaTeX math between dollar signs (which is
standard LaTeX notation): `$\{ x \mid x^2 \in S \}$`.
[MultiMarkdown]: http://fletcherpenney.net/
MultiMarkdown_Syntax_Guide#mathsyntax
[asciimath]: http://www1.chapman.edu/~jipsen/asciimath.html
[mdx_math]: http://www.freewisdom.org/projects/python-markdown/mdx_math
[Pandoc]: http://johnmacfarlane.net/pandoc/README.html#inline-latex
While I'd love to see mathematics support in the "official" Markdown
syntax, I understand that it's not a huge priority for most people
(particularly since an ideal widel...
2009 Sep 09
4
tables with Unicode box drawing characters?
Hello,
I read David Wheeler's table proposal[1] for Markdown and very much
agree with his conclusion and PostgreSQL-inspired proposed format. I
also read the mailing list archives for 2009 but did not find any
clear concesus on whether DW's format was officially accepted (I hope
it is soon!).
However, I want to ask: has anyone considered taking these simple
ASCII table drawings to the