-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[flutter_markdown] Footnote support #5058
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM once the Linux build failure is sorted
PTAL @tarrinneal |
Hi, I found the issue during adding it to my application. To support superscript the font which is used has to support
I have prepared demo with basic implementation. In the case of using custom font feature everything is ready. Using Transform.translate is quite buggy because it doesn't support Demo with |
merged mid review, lol. no concerns about the comment from @dawidope ? |
flutter/packages@d654f75...6714d50 2023-10-04 [email protected] [webview_flutter] Fix XCUITest in Xcode 15 (flutter/packages#5071) 2023-10-04 [email protected] [path_provider] Fix integration tests (flutter/packages#5075) 2023-10-04 [email protected] [flutter_markdown] Footnote support (flutter/packages#5058) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC [email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
flutter/packages@d654f75...6714d50 2023-10-04 [email protected] [webview_flutter] Fix XCUITest in Xcode 15 (flutter/packages#5071) 2023-10-04 [email protected] [path_provider] Fix integration tests (flutter/packages#5075) 2023-10-04 [email protected] [flutter_markdown] Footnote support (flutter/packages#5058) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC [email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Fix not solved issue from another PR: #5058 (comment). I chose the 2nd option with custom font feature.
Fix not solved issue from another PR: flutter#5058 (comment). I chose the 2nd option with custom font feature.
Fix not solved issue from another PR: flutter#5058 (comment). I chose the 2nd option with custom font feature.
Support for footnote which was introduced in
markdown
7.1.0 which is used influtter_markdown
package.It allows to use the newest version of markdown without overriding it to 7.0.0 because of missing
section
tag handling.Issue: flutter/flutter#127425
Pre-launch Checklist
dart format
.)[shared_preferences]
pubspec.yaml
with an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes.CHANGELOG.md
to add a description of the change, following repository CHANGELOG style.///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.