Skip to content

Commit

Permalink
[flutter_markdown] Fix typo in readme (flutter#5096)
Browse files Browse the repository at this point in the history
Since HTML is pronounced with an A at the beginning (at least by around [85%](https://english.stackexchange.com/a/23762) of people), it should [probably](https://english.stackexchange.com/a/25746) be spelled `an HTML`.
  • Loading branch information
nohli authored and HugoOlthof committed Dec 13, 2023
1 parent d965258 commit 55fe4f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/flutter_markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.18+1

* Fixes a typo in README.

## 0.6.18

* Adds support for `footnote`.
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_markdown/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ containing a rich text representation.
the Markdown into an abstract syntax tree (AST). The nodes of the AST are an
HTML representation of the Markdown data.

## Flutter Isn't a HTML Renderer
## Flutter Isn't an HTML Renderer

While this approach to creating a rich text representation of Markdown source
text in Flutter works well, Flutter isn't a HTML renderer like a web browser.
text in Flutter works well, Flutter isn't an HTML renderer like a web browser.
Markdown was developed by John Gruber in 2004 to allow users to turn readable,
plain text content into rich text HTML. This close association with HTML allows
for the injection of HTML into the Markdown source data. Markdown parsers
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_markdown/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Markdown renderer for Flutter. Create rich text output,
formatted with simple Markdown tags.
repository: https://github.com/flutter/packages/tree/main/packages/flutter_markdown
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_markdown%22
version: 0.6.18
version: 0.6.18+1

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down

0 comments on commit 55fe4f2

Please sign in to comment.