#11016 closed defect (bug) (duplicate)
Readme.txt: Multiple underscores in words
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | WordPress.org Site | Keywords: | |
Focuses: | Cc: |
Description
This is related to Markdown syntax in plugin readme files.
Specifically, if you write this:
my_function_name()
You get this:
myfunctionname()
This should be fixed.
GitHub has already tackled this problem: GitHub Flavored Markdown
Change History (6)
#3
follow-up:
↓ 4
@
15 years ago
+1 for fixing this.
Sometimes it is not natural - example from changelog of Enhanced Meta Widget plugin:
Added German (de_DE) and Danish (da_DK) language files.
renders as:
Added German (deDE) and Danish (daDK) language files.
#4
in reply to:
↑ 3
@
15 years ago
- Cc dkikizas@… added
Both
a_function_name()
and
Added German (de_DE) and Danish (da_DK) language files.
are handled right by PHP Markdown Extra.
Test here: http://michelf.com/projects/php-markdown/dingus/
Extra also has some nice additions, like support for definition lists, all of which work fine.
Maybe WP.org could switch to Markdown Extra?
Note: See
TracTickets for help on using
tickets.
And reason you can't just put code examples in backticks?