-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[flutter_markdown] Fix typo in readme #5096
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2fbfb10
fb47a6a
d74676b
08ea7db
1bfa8fa
ec3fc91
0813fdb
8ff65c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd argue the H in HTML is sounded, and thus a is correct in this position per https://owl.purdue.edu/owl/general_writing/grammar/articles_a_versus_an.html Hey @sfshaza2 or @atsansone wanna tie break? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the link, there is no instance of "a h", but twice "an h"
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For an initialism it doesn't really make sense to say a letter is sounded or unsounded; the sound of the letters isn't used at all. The deciding factor is the pronunciation of the letter H as a word. Since Flutter style uses US English spelling, we should spell this based on prevailing US pronunciation (which starts with an "ay"/"ai" sound), making "an" correct. |
||
|
||
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 | ||
|
Uh oh!
There was an error while loading. Please reload this page.