diff --git a/SpotifyWebAPI/search/index.html b/SpotifyWebAPI/search/index.html index e838ec0a..0a210e27 100644 --- a/SpotifyWebAPI/search/index.html +++ b/SpotifyWebAPI/search/index.html @@ -210,9 +210,9 @@ -
Returns a SearchItem which contains the properties Paging<SimpleArtist> Artists
,Paging<FullTrack> Tracks
, Paging<SimpleAlbum> Albums
. They are filled based on your search-type.
Returns a SearchItem which contains the properties Paging<FullArtist> Artists
,Paging<FullTrack> Tracks
, Paging<SimpleAlbum> Albums
, Paging<SimplePlaylist> Playlists
. They are filled based on your search-type.
Usage
-SearchItem item = _spotify.SearchItems("roadhouse+blues", SearchType.Album);
+SearchItem item = _spotify.SearchItems("roadhouse+blues", SearchType.Album | SearchType.Playlist);
Console.WriteLine(item.Albums.Total); //How many results are there in total? NOTE: item.Tracks = item.Artists = null
diff --git a/base.html b/base.html
new file mode 100644
index 00000000..5612b9ff
--- /dev/null
+++ b/base.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ {% if page_description %}{% endif %}
+ {% if site_author %}{% endif %}
+ {% if canonical_url %}{% endif %}
+ {% if favicon %}
+ {% else %}{% endif %}
+
+ {% if page_title %}{{ page_title }} - {% endif %}{{ site_name }}
+
+
+
+
+
+
+ {%- for path in extra_css %}
+
+ {%- endfor %}
+
+
+
+
+
+
+
+ {% include "nav.html" %}
+
+
+ {% include "toc.html" %}
+ {% include "content.html" %}
+
+
+ {% if include_search %}{% include "search.html" %}{% endif %}
+
+
+
+
+ {%- for path in extra_javascript %}
+
+ {%- endfor %}
+
+
diff --git a/content.html b/content.html
new file mode 100644
index 00000000..a3726582
--- /dev/null
+++ b/content.html
@@ -0,0 +1,9 @@
+{% if meta.source %}
+
+{% for filename in meta.source %}
+ {{ filename }}
+{% endfor %}
+
+{% endif %}
+
+{{ content }}
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index 883621e3..9da9591d 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -62,9 +62,59 @@
},
{
"location": "/SpotifyWebAPI/gettingstarted/#api-reference",
- "text": "Albums GetAlbumTracks GetAlbum GetSeveralAlbums Artists GetArtist GetRelatedArtists GetArtistsTopTracks GetArtistsAlbums GetSeveralArtists Browse GetFeaturedPlaylists GetNewAlbumReleases GetCategories GetCategory GetCategoryPlaylists Follow Follow Unfollow IsFollowing FollowPlaylist UnfollowPlaylist IsFollowingPlaylist Library SaveTracks SaveTrack GetSavedTracks RemoveSavedTracks CheckSavedTracks SaveAlbums SaveAlbum GetSavedAlbums RemoveSavedAlbums CheckSavedAlbums Playlists GetUserPlaylists GetPlaylist GetPlaylistTracks CreatePlaylist UpdatePlaylist ReplacePlaylistTracks RemovePlaylistTracks RemovePlaylistTrack AddPlaylistTracks AddPlaylistTrack ReorderPlaylist Profiles GetPublicProfile GetPrivateProfile Search SearchItems Tracks GetSeveralTracks GetTrack Util Utility-Functions",
+ "text": "",
"title": "API-Reference"
},
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#albums",
+ "text": "GetAlbumTracks GetAlbum GetSeveralAlbums",
+ "title": "Albums"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#artists",
+ "text": "GetArtist GetRelatedArtists GetArtistsTopTracks GetArtistsAlbums GetSeveralArtists",
+ "title": "Artists"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#browse",
+ "text": "GetFeaturedPlaylists GetNewAlbumReleases GetCategories GetCategory GetCategoryPlaylists",
+ "title": "Browse"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#follow",
+ "text": "Follow Unfollow IsFollowing FollowPlaylist UnfollowPlaylist IsFollowingPlaylist",
+ "title": "Follow"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#library",
+ "text": "SaveTracks SaveTrack GetSavedTracks RemoveSavedTracks CheckSavedTracks SaveAlbums SaveAlbum GetSavedAlbums RemoveSavedAlbums CheckSavedAlbums",
+ "title": "Library"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#playlists",
+ "text": "GetUserPlaylists GetPlaylist GetPlaylistTracks CreatePlaylist UpdatePlaylist ReplacePlaylistTracks RemovePlaylistTracks RemovePlaylistTrack AddPlaylistTracks AddPlaylistTrack ReorderPlaylist",
+ "title": "Playlists"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#profiles",
+ "text": "GetPublicProfile GetPrivateProfile",
+ "title": "Profiles"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#search",
+ "text": "SearchItems",
+ "title": "Search"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#tracks",
+ "text": "GetSeveralTracks GetTrack",
+ "title": "Tracks"
+ },
+ {
+ "location": "/SpotifyWebAPI/gettingstarted/#util",
+ "text": "Utility-Functions",
+ "title": "Util"
+ },
{
"location": "/SpotifyWebAPI/examples/",
"text": "",
@@ -347,12 +397,12 @@
},
{
"location": "/SpotifyWebAPI/search/",
- "text": "SearchItems\n\n\n\n\nGet Spotify catalog information about artists, albums, tracks or playlists that match a keyword string.\n\n\n\n\nParamters\n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nq\n\n\nThe search query's keywords (and optional field filters and operators), for example q=roadhouse+blues.\n\n\n\"roadhouse+blues\"\n\n\n\n\n\n\ntype\n\n\nA list of item types to search across.\n\n\nSearchType.Album\n\n\n\n\n\n\n[limit]\n\n\nThe maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.\n\n\n20\n\n\n\n\n\n\n[offset]\n\n\nThe index of the first result to return. Default: 0\n\n\n0\n\n\n\n\n\n\n[market]\n\n\nAn ISO 3166-1 alpha-2 country code or the string from_token.\n\n\n\"de\"\n\n\n\n\n\n\n\n\nReturns a \nSearchItem\n which contains the properties \nPaging\nSimpleArtist\n Artists\n,\nPaging\nFullTrack\n Tracks\n, \nPaging\nSimpleAlbum\n Albums\n. They are filled based on your search-type.\n\n\nUsage\n\n\nSearchItem item = _spotify.SearchItems(\nroadhouse+blues\n, SearchType.Album);\nConsole.WriteLine(item.Albums.Total); //How many results are there in total? NOTE: item.Tracks = item.Artists = null",
+ "text": "SearchItems\n\n\n\n\nGet Spotify catalog information about artists, albums, tracks or playlists that match a keyword string.\n\n\n\n\nParamters\n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nq\n\n\nThe search query's keywords (and optional field filters and operators), for example q=roadhouse+blues.\n\n\n\"roadhouse+blues\"\n\n\n\n\n\n\ntype\n\n\nA list of item types to search across.\n\n\nSearchType.Album\n\n\n\n\n\n\n[limit]\n\n\nThe maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.\n\n\n20\n\n\n\n\n\n\n[offset]\n\n\nThe index of the first result to return. Default: 0\n\n\n0\n\n\n\n\n\n\n[market]\n\n\nAn ISO 3166-1 alpha-2 country code or the string from_token.\n\n\n\"de\"\n\n\n\n\n\n\n\n\nReturns a \nSearchItem\n which contains the properties \nPaging\nFullArtist\n Artists\n,\nPaging\nFullTrack\n Tracks\n, \nPaging\nSimpleAlbum\n Albums\n, \nPaging\nSimplePlaylist\n Playlists\n. They are filled based on your search-type.\n\n\nUsage\n\n\nSearchItem item = _spotify.SearchItems(\nroadhouse+blues\n, SearchType.Album | SearchType.Playlist);\nConsole.WriteLine(item.Albums.Total); //How many results are there in total? NOTE: item.Tracks = item.Artists = null",
"title": "- Search"
},
{
"location": "/SpotifyWebAPI/search/#searchitems",
- "text": "Get Spotify catalog information about artists, albums, tracks or playlists that match a keyword string. Paramters Name Description Example q The search query's keywords (and optional field filters and operators), for example q=roadhouse+blues. \"roadhouse+blues\" type A list of item types to search across. SearchType.Album [limit] The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. 20 [offset] The index of the first result to return. Default: 0 0 [market] An ISO 3166-1 alpha-2 country code or the string from_token. \"de\" Returns a SearchItem which contains the properties Paging SimpleArtist Artists , Paging FullTrack Tracks , Paging SimpleAlbum Albums . They are filled based on your search-type. Usage SearchItem item = _spotify.SearchItems( roadhouse+blues , SearchType.Album);\nConsole.WriteLine(item.Albums.Total); //How many results are there in total? NOTE: item.Tracks = item.Artists = null",
+ "text": "Get Spotify catalog information about artists, albums, tracks or playlists that match a keyword string. Paramters Name Description Example q The search query's keywords (and optional field filters and operators), for example q=roadhouse+blues. \"roadhouse+blues\" type A list of item types to search across. SearchType.Album [limit] The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. 20 [offset] The index of the first result to return. Default: 0 0 [market] An ISO 3166-1 alpha-2 country code or the string from_token. \"de\" Returns a SearchItem which contains the properties Paging FullArtist Artists , Paging FullTrack Tracks , Paging SimpleAlbum Albums , Paging SimplePlaylist Playlists . They are filled based on your search-type. Usage SearchItem item = _spotify.SearchItems( roadhouse+blues , SearchType.Album | SearchType.Playlist);\nConsole.WriteLine(item.Albums.Total); //How many results are there in total? NOTE: item.Tracks = item.Artists = null",
"title": "SearchItems"
},
{
diff --git a/nav.html b/nav.html
new file mode 100644
index 00000000..1cb451f8
--- /dev/null
+++ b/nav.html
@@ -0,0 +1,74 @@
+
diff --git a/sitemap.xml b/sitemap.xml
index c68dfa81..d417aadc 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
None/
- 2015-12-07
+ 2016-03-05
daily
@@ -13,79 +13,79 @@
None/SpotifyWebAPI/gettingstarted/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/examples/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/auth/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/albums/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/artists/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/browse/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/follow/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/library/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/playlists/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/profiles/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/search/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/tracks/
- 2015-12-07
+ 2016-03-05
daily
None/SpotifyWebAPI/util/
- 2015-12-07
+ 2016-03-05
daily
@@ -95,7 +95,7 @@
None/SpotifyLocalAPI/
- 2015-12-07
+ 2016-03-05
daily
diff --git a/toc.html b/toc.html
new file mode 100644
index 00000000..7736f9bb
--- /dev/null
+++ b/toc.html
@@ -0,0 +1,10 @@
+