├── .gitignore ├── .metadata ├── README.md ├── lib ├── h_parser │ ├── action │ │ ├── action_css_parser.dart │ │ ├── action_json_parser.dart │ │ ├── action_json_replace_parser.dart │ │ ├── action_jsoup_parser.dart │ │ ├── action_parser.dart │ │ ├── action_regexp_parser.dart │ │ ├── action_replace_parser.dart │ │ └── action_xpath_parser.dart │ ├── dsoup │ │ ├── d_element.dart │ │ ├── d_elements.dart │ │ ├── dsoup.dart │ │ └── soup_object_cache.dart │ ├── h_eval_parser.dart │ ├── h_parser.dart │ ├── jscore │ │ ├── FunctionBinding.dart │ │ ├── JSRuntime.dart │ │ └── js_init_script.dart │ ├── regexp_rule.dart │ └── xpath │ │ ├── token_kind.dart │ │ ├── xpath_parser.dart │ │ └── xpath_selector.dart ├── main.dart └── test_html.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/README.md -------------------------------------------------------------------------------- /lib/h_parser/action/action_css_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_css_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_json_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_json_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_json_replace_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_json_replace_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_jsoup_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_jsoup_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_regexp_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_regexp_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_replace_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_replace_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/action/action_xpath_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/action/action_xpath_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/dsoup/d_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/dsoup/d_element.dart -------------------------------------------------------------------------------- /lib/h_parser/dsoup/d_elements.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/dsoup/d_elements.dart -------------------------------------------------------------------------------- /lib/h_parser/dsoup/dsoup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/dsoup/dsoup.dart -------------------------------------------------------------------------------- /lib/h_parser/dsoup/soup_object_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/dsoup/soup_object_cache.dart -------------------------------------------------------------------------------- /lib/h_parser/h_eval_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/h_eval_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/h_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/h_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/jscore/FunctionBinding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/jscore/FunctionBinding.dart -------------------------------------------------------------------------------- /lib/h_parser/jscore/JSRuntime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/jscore/JSRuntime.dart -------------------------------------------------------------------------------- /lib/h_parser/jscore/js_init_script.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/jscore/js_init_script.dart -------------------------------------------------------------------------------- /lib/h_parser/regexp_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/regexp_rule.dart -------------------------------------------------------------------------------- /lib/h_parser/xpath/token_kind.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/xpath/token_kind.dart -------------------------------------------------------------------------------- /lib/h_parser/xpath/xpath_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/xpath/xpath_parser.dart -------------------------------------------------------------------------------- /lib/h_parser/xpath/xpath_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/h_parser/xpath/xpath_selector.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/test_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/lib/test_html.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huage2580/reader_parser/HEAD/test/widget_test.dart --------------------------------------------------------------------------------