Michel Fortin

Results 15 issues of Michel Fortin

This should produce an `` tag in Markdown Extra: ``` abbr next line *[abbr]: Abbreviation ``` Edit/Clarification: there is a two-space newline that transforms into a `` at the end...

With `no_markup` and `no_entities` set to true, angle brackets inside of bold/italic blocks get double encoded. Sample input: ~~~ ____ __ ~~~ Actual output: ~~~ <testing> <testing> <testing> ~~~ Expected...

From https://www.drupal.org/node/2372753 The following example markdown: ``` Header1 | Header2 ----------- | ------------ Cell 1.1 | Item 1.2.1Item 1.2.2 Cell 2.1 | Cell 2.2 ``` Results in a broken table...

Unified Block

Input: ``` **This** *works* **This_doesn't** *work* ``` Output: (https://michelf.ca/projects/php-markdown/dingus/) ``` This works This_doesn't *work* ``` Expected: (http://daringfireball.net/projects/markdown/dingus) ``` This works This_doesn't work ```

This causes invalid paragraphs to be added after a div with MarkdownExtra, but it works with the regular Markdown parser: ``` image ``` It also works fine if the tags...

Textile compatibility mode is no longer supported with the Lib package, although it's still doable by creating a separate file containing a textile class and loading PHP Markdown. Perhaps there...

From https://github.com/michelf/php-markdown/issues/261: > Additional note: SmartyPantTypographer add no-break space between `&#xFE0E` and `;` with the `do_space_unit` option.

Two threads are accessing `unhideOnNextDisplay` [in FilteredView.swift](https://github.com/michelf/sim-daltonism/blob/99a61293a063b7588404b4ab5e286f3ee38b0bef/Mac%20App/FilteredView.swift#L225-L228) without proper synchronization. Even though it seems work, it is theoretically undefined behavior and should be fixed.

The project should set its own indentation settings instead of relying on everyone having the same settings in Xcode, which is quite unrealistic. This will make it easier to contribute.

It's currently a bit messy to have more than one person working on the code given the code signing and development team settings are different for each of us. It'd...