-
-
Notifications
You must be signed in to change notification settings - Fork 7k
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
[WIP] Make serial monitor hyperlink-aware #5804
base: master
Are you sure you want to change the base?
Conversation
The HTML view only activates if: - the output is steady - the "frame" contains a link - the length of the entire content is < 1KB No performance penalty compared to normal view (in standard conditions)
ee3319d
to
1294f86
Compare
✅ Build completed. Please test this code using one of the following: ⬇️ http://downloads.arduino.cc/javaide/pull_requests/arduino-PR-5804-BUILD-706-linux32.tar.xz ℹ️ The |
I think it might still be valuable for some Serial monitor based IoT tutorials, maybe with a better implementation 🙂 |
Add hyperlink listener capabilities to the serial monitor.
The links are automatically created if http/https/ftp pattern is found, but a full
<a href ... </a>
style can be used and the output won't be mangled (useful if you want to make clickable links with loooong URLs).No corner case is considered, cpu usage could ramp to 1000% or similar, so use it with a grain of salt (and report any unexpected behaviour/bug)