Making WordPress.org

Ticket #2638: 2638.diff

File 2638.diff, 483 bytes (added by obenland, 7 years ago)
  • wp-content/plugins/plugin-directory/readme/class-parser.php

     
    629629                        $markdown = new Markdown();
    630630                }
    631631
    632                 return $markdown->transform( $text );
     632                return str_replace( array( "\r", "\n" ), ' ', $markdown->transform( $text ) );
    633633        }
    634634}