Api(query) -> SearchResult[]
{
searchEngineResults = SearchAdapter(query);
searchResults = []
foreach searchEngineResult:
html = HTMLFetcher(searchEngineResult.url);
markdown = MarkdownFormatter(html)
searchResults.push({...searchEngineResult, content: markdown})
return searchResults
}
SearchResult: {
link
websiteName
pageTitle
Content: markdown
}
SearchAdapter(query) -> SearchEngineResult[]
SearchEngineResult: {
link
websiteName
pageTitle
}
HTMLFetcher(url) -> html
MarkdownFormatter(html, stylesheetName) -> markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
SamiElkateb/doc-search-api
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published