unofficial_jisho_api_dart/lib/parser.dart

11 lines
544 B
Dart

/// This library provides parsing functions for html pages from Jisho.org,
/// and the associated URI-producing functions.
///
/// This might be useful for using a CORS proxy, or if you have your own system/library
/// for providing HTML.
library unofficial_jisho_parser;
export './src/phraseSearch.dart';
export './src/kanjiSearch.dart' show uriForKanjiSearch, parseKanjiPageData;
export './src/exampleSearch.dart' show uriForExampleSearch, parseExamplePageData;
export './src/phraseScrape.dart' show uriForPhraseScrape, parsePhrasePageData;