An open API service indexing awesome lists of open source software.

https://github.com/ampless/html_search

A really small package for searching in HTML.
https://github.com/ampless/html_search

Last synced: 6 months ago
JSON representation

A really small package for searching in HTML.

Awesome Lists containing this project

README

          

# html\_search

A really small package for searching in HTML.

```dart
import 'package:html_search/html_search.dart';

void main() => htmlParse('


hi


hi again


')
.search((e) => e.id == 'myparagraph')
.map((e) => e.outerHtml)
.forEach(print);
```