Tagged Questions
16
votes
4answers
2k views
“Safe” markdown processor for PHP?
Is there a PHP implementation of markdown suitable for using in public comments?
Basically it should only allow a subset of the markdown syntax (bold, italic, links, block-quotes, code-blocks and ...
11
votes
3answers
1k views
How to store Markdown comments
I want to use Markdown for my website's commenting system but I have stumbled upon the following problem: What should I store in the database - the original comment in Markdown, the parsed comment in ...
9
votes
4answers
2k views
WMD markdown editor - HTML to Markdown conversion
I am using wmd markdown editor on a project and had a question:
When I post the form containing the markdown text area, it (as expected) posts html to the server. However, say upon server-side ...
9
votes
5answers
869 views
How to store lightweight formatting (Textile, Markdown) in database?
I'm going to be implementing a lightweight formatting language (probably Textile, maybe Markdown) in a project I'm working on, and I'm wonder how best to store it in the database.
If the user is able ...
8
votes
2answers
299 views
How can I get Wordpress to save comments in markdown format?
I love markdown, and I have the Wordpress markdown-for-wordpress-and-bbpress parsing markdown in my posts and comments.
However, I've noticed that Wordpress saves the comments rendered in html ...
5
votes
1answer
179 views
PHP content management system which tracks content through git
Are there any content management systems which use git for tracking content and support markdowns? I have heard of git-blog and WiGit , any other suggestions would be appreciated.
4
votes
1answer
120 views
Is there a way to prevent Markdown nesting abuse?
I'm using the PHP Markdown script available here: http://michelf.com/projects/php-markdown/
I noticed today that if someone posts a message containing text like:
...
4
votes
4answers
987 views
Expanding PHP Markdown to Accept CSS Classnames
I'm a huge fan of Markdown (using it in nearly all of my PHP projects) but not a fan of its limited output. Much of the rendering is a bit too simple, and doesn't really allow me much control or ...
4
votes
3answers
354 views
How to treat single newline as real line break in PHP Markdown?
I was reading http://github.github.com/github-flavored-markdown/
I would like to implement that "Newline modification" in PHP Markdown:
Best I could think of is:
$my_html = Markdown($my_text);
...
4
votes
6answers
962 views
Is Markdown (with strip_tags) sufficient to stop XSS attacks?
I'm working on a web application that allows users to type short descriptions of items in a catalog. I'm allowing Markdown in my textareas so users can do some HTML formatting.
My text sanitization ...
4
votes
3answers
238 views
How would you go about auto-detecting Textile versus Markdown?
I'm considering supporting both Textile and Markdown on a current project. I would prefer not forcing users to choose one or the other. Is there a way to auto-detect which the user is using? How would ...
3
votes
1answer
135 views
How can I disallow all HTML using markdown (PHP and JS)?
I'm using the PHP markdown library: http://michelf.com/projects/php-markdown/ and the Javascript markdown library: http://attacklab.net/showdown/
I want to disallow all HTML, both the versions of ...
2
votes
2answers
74 views
Can't convert markdown into HTML using StackExchanges's PageDown
I have a method of storing straight markup code (generate by PageDown's editor) into a database. On another page, I grab the markup from the database and run it through the markdown converter, however ...
2
votes
1answer
41 views
PHP Regex markdown from string
I have this string: "Download it from [http://wordpress.org/extend/plugins/wordpress-mobile-admin/](http://wordpress.org/extend/plugins/wordpress-mobile-admin/)";
And i'm trying to convert this ...
2
votes
4answers
2k views
How to run Ruby/Python scripts from inside PHP passing and receiving parameters?
I need to turn HTML into equivalent Markdown-structured text.
OBS.: Quick and clear way of doing this with PHP & Python.
As I am programming in PHP, some people indicates Markdownify to do the ...
2
votes
2answers
80 views
I need help modifying a regular expression for PHP markdown
I'm modifying PHP Markdown (a PHP parser of the markup language which is used here on Stack Overflow) trying to implement points 1, 2 and 3 described by Jeff in this blog post. I've easily done the ...
2
votes
1answer
361 views
PHP Markdown Extra and Definition Lists
I'm currently generating a definition list with PHP Markdown Extra with the following syntax:
Term
: Description
: Description Two
My Other Term
: Description
which generates the following ...
2
votes
3answers
152 views
PHP code to convert text blocks indented by four spaces into a <pre><code> block [Markdown]
I'm not very good at PHP and would like to have a PHP function which turns this (text block indented by four spaces):
printf("goodbye world!"); /* his suicide note
...
2
votes
4answers
794 views
Markdown vs. HTML in a CMS
I'm working on a fairly large CMS-like app that includes a forum, wiki pages, etc. What whould you chose between Markdown and HTML? I'm concerned about usability and the fact non-techie people will ...
2
votes
4answers
2k views
Quickly Convert (.rtf|.doc) Files to Markdown Syntax with PHP
I've been manually converting articles into Markdown syntax for a few days now, and it's getting rather tedious. Some of these are 3 or 4 pages, italics and other emphasized text throughout. Is there ...
1
vote
1answer
54 views
Un-markdown text?
So I'm using Markdown to format text input from user:
http://michelf.com/projects/php-markdown/
But I'm doing this destructively, so the text turns into HTML before database update. Can I transform ...
1
vote
2answers
52 views
PHP reading first 2 lines of file into variable and cylce through subfolders
I am trying to do the following with PHP...
Read a directory
Find all .md and .markdown files
Read the first 2 lines of these Markdown files.
If a Title: Title for the file is found on line 1 then ...
1
vote
1answer
73 views
How can I convert markdown to html (should i use an existing script)?
What is the best way to convert from markdown to html. Should i write my own script of use something already out there?
Are there any existing markdown converters you can recommend? that are ...
1
vote
1answer
71 views
PHP Markdown tagging last chunk of content as h3
I'm using PHP Markdown (version 1.0.1n, updated October 2009) to display text saved to a database in markdown format. I'm running into a strange issue where it's tagging the last chunk of every entry ...
1
vote
3answers
88 views
Prevent PHP from automatically escaping returned string?
I have a function that returns a string of HTML code for a jQuery plugin, parsed using PHP Markdown:
function awesome_function() {
$html = Markdown('# Hello World!');
return $html;
}
... but ...
1
vote
4answers
51 views
Replacing all parts in a string wrapped with ** signs like so ** with a string?
I was looking at mimicking functionality that is used here at stackoverflow with the double asterisk.
Say you have a variable like so:
$string = 'hello i am **a string** and i have **stuff in me**';
...
1
vote
2answers
282 views
How to use the Markdown class in Yii
I see there is a Markdown class CMarkdown, but how do I use it?
There's no examples anywhere and the methods aren't self explanatory.
Do I use it statically like CHtml, or weird like a Widget?
Or ...
1
vote
1answer
89 views
Bi-directional Text Parsing Recommendations
I'm looking at the feasability of implementing a bi-directional text parsing framework to allow formatted text to be processed using a combination of common paradigms such as Markdown, BBCode, ...
1
vote
1answer
429 views
How to STDIN and STDOUT with PHP and Python to use html2text and get a markdown formated text?
I am sending an HTML text from PHP to Python via STDIN. My objctive is to use Aaron Swartz's script "html2text.py" and to print the result to PHP via STDOUT.
Camarade Jan gave me the word and put me ...
1
vote
0answers
260 views
converting markdown lists to html lists in PHP
I have been working on a markdown converter today for a project of mine. I got lost in it and just ran through the code and noticed I had a huge amount for converting lists. My code is below , I ...
1
vote
1answer
67 views
Where did I go wrong in my regex lookaround?
I'm trying to pull the first paragraph out of Markdown formatted documents:
This is the first paragraph.
This is the second paragraph.
The answer here gives me a solution that matches ...
1
vote
2answers
167 views
Storing multi-lingual data in serialised php in mysql
I have to insert some data into a MySQL table. The data will be retrieved and then (at present) unserialized at which point the correct display language will be selected...
I've managed to munge the ...
1
vote
1answer
72 views
Markdown implementation in PHP parses text within <a> tags — how does one disable this behavior?
I'm using the Markdown library for PHP by Michel Fortin. I started noticing that it formats the text in tags with markdown rules, like so:
http://foo.com/My_Url_With_Underscores
essentially ...
1
vote
2answers
229 views
Custom Markdown for PHP handling new lines
I need custom Markdown library for PHP which converts new lines to <br/> without the need to put double space on the end of the line, kinda like here on SO. I've been looking on the web but ...
1
vote
1answer
235 views
WMD Markdown and server-side
I have worked the last 2 days on WMD and Markdown, and I don't find THE solution for stock data with security. I would like users to be able to post HTML/XML <code> (with WMD) on my site.
For the ...
1
vote
2answers
849 views
PHP Replace, But Alternate Replace String
Okay, here's what I'm trying to do: I'm trying to use PHP to develop what's essentially a tiny subset of a markdown implementation, not worth using a full markdown class.
I need essentially do a ...
1
vote
3answers
463 views
running showdown.js serverside to conver Markdown to HTML (in PHP)
I am trying to implement WMD onto my website and was wondering how would I go about running showdown.js server side to convert markdown to HTML? (in order to store both in the DB)
I am using ...
0
votes
2answers
40 views
What is the intent of inline <?=$GLOBAL?> directive in PHP? Is it markdown?
I am working on a PHP project that is using an (anti)-convention that is causing errors, and I'm not quite sure what it is trying to achieve, so fixing it is difficult..
The project does use ...
0
votes
0answers
30 views
Retrieving variables (document metadata) from a MultiMarkdown document with PHP
How can I retrieve MultiMarkdown document metadata (as defined here) using php?
I was rather surprised that I couldn't find a MultiMarkdown php parser, PHP Markdown Extra doesn't do MultiMarkdown.
...
0
votes
0answers
26 views
Share content across Markdown files
I've got a set of six Markdown tutorials written for different programming languages. The problem is that the files often share whole paragraphs of content, so now we have the same content represented ...
0
votes
2answers
30 views
Accessing Markdown PHP function from within a class
I'm using the Markdown library for PHP by Michel Fortin. Setup is easy and it works great like this:
include_once "markdown.php";
$my_html = Markdown($my_text);
However, I have a class in which I ...
0
votes
0answers
74 views
How to fix missing markdown linebreaks in php
Markdown is nice and I use it a lot. The only thing that deems completely counter intuitive to me, is that it requires two empty spaces at the end of lines, where a line break should occur.
A break ...
0
votes
2answers
67 views
Simple Markdown subset features in PHP
I would like to allow only paragraphs and lists.
Actually i want to use the input to create a document in Open Document format. So I replace the tag <p> with the correct tag in ODF. But first, ...
0
votes
2answers
62 views
Need help with php code to use the markdown parser
I am attempting to use MarkItUp and PHP Markdown Parser. But I am don't know how to invoke the parser in the preview.php file.
My preview.php is invoked and correct form data is sent by inspect the ...
0
votes
2answers
78 views
Creating Simple markdown class
Im currently working on a system that has a comment system integrated, the system is running on Codeigniter so im looking to create a markdown library but with really minimal features.
The features ...
0
votes
1answer
80 views
How to generate pdf from markdown using php?
I'm looking for a solution to make a pdf from a markdown file using PHP.
I need to use custom styles as well. So i'm wondering if parsing markdown then going with webkittopdf and using custom css ...
0
votes
1answer
129 views
Mark Down format online editor [closed]
On my website I want to provide a text editor like the one i'm typing in now that uses the mark down format in PHP and JavaScript.
Something like TinyMCE but just accepts the text and saves it in a ...
0
votes
2answers
147 views
Are text editors that use Markdown by detault safer than other text editors
I'm familiar with CKEditor which converts bold text to its HTML tags <strong>. Other editors (like the editor on this site) use Markdown formatting and I see bold text wrapped in stars instead ...
0
votes
4answers
304 views
Preg_replace_all links to markdown format
We're converting to markdown, before we used an 'in-house' system, where both the image links and all data with it (e.g. alt) in another bracket.
For example {IMAGE LINK}[OPTIONAL ALT WITH OTHER ...
0
votes
0answers
106 views
Modifying PHP markdown editor
I want to change how this PHP markdown port creates images:
function doImages($text) {
#
# Turn Markdown image shortcuts into <img> tags.
#
#
# First, handle reference-style labeled ...