2020-06-25 23:40:54 +02:00
|
|
|
/// This library provides parsing functions for html pages from Jisho.org,
|
|
|
|
/// and the associated URI-producing functions.
|
2020-06-26 18:14:00 +02:00
|
|
|
///
|
2020-06-25 23:40:54 +02:00
|
|
|
/// This might be useful for using a CORS proxy, or if you have your own system/library
|
|
|
|
/// for providing HTML.
|
2020-06-25 22:42:16 +02:00
|
|
|
library unofficial_jisho_parser;
|
|
|
|
|
2020-06-30 11:58:20 +02:00
|
|
|
export './src/objects.dart';
|
2021-07-25 22:57:02 +02:00
|
|
|
export 'src/example_search.dart' show uriForExampleSearch, parseExamplePageData;
|
|
|
|
export 'src/kanji_search.dart' show uriForKanjiSearch, parseKanjiPageData;
|
|
|
|
export 'src/phrase_scrape.dart' show uriForPhraseScrape, parsePhrasePageData;
|
|
|
|
export 'src/phrase_search.dart';
|