Ticket #22 (assigned defect)

Opened 3 years ago

Last modified 3 years ago

Umlaut Conversion

Reported by: Tobias Grimm <tobias.grimm@…> Owned by: deveiant
Priority: normal Milestone: Markdown 1.0.1
Component: MarkdownSyntax Version: 1.0.0fc2
Severity: normal Keywords: markdown syntax umlaut conversion
Cc:

Description

It would be nice, if at least the basic german umlauts would get converted, like this:

#Escape Umlauts
text.gsub!(/ä/, '&auml;')
text.gsub!(/ö/, '&ouml;')
text.gsub!(/ü/, '&uuml;')
text.gsub!(/ß/, '&szlig;')
text.gsub!(/Ä/, '&Auml;')
text.gsub!(/Ö/, '&Ouml;)

Tobias

Change History

Changed 3 years ago by deveiant

  • status changed from new to assigned
  • version changed from 1.0.0 to 1.0.0fc2

I'll add tests for these and probably some more. Thanks for the report.

Note: See TracTickets for help on using tickets.