Bandcamp javadoc: Replace br tags with p tags

This commit is contained in:
Fynn Godau 2020-04-20 23:03:12 +02:00
parent 9201e0d3ea
commit 10ae3db118
2 changed files with 10 additions and 10 deletions

View File

@ -16,9 +16,9 @@ import java.util.Arrays;
public class BandcampExtractorHelper { public class BandcampExtractorHelper {
/** /**
* Get JSON behind <code>var $variable = </code> out of web page * <p>Get JSON behind <code>var $variable = </code> out of web page</p>
* <br/<br/> *
* Originally a part of bandcampDirect. * <p>Originally a part of bandcampDirect.</p>
* *
* @param html The HTML where the JSON we're looking for is stored inside a * @param html The HTML where the JSON we're looking for is stored inside a
* variable inside some JavaScript block * variable inside some JavaScript block

View File

@ -6,10 +6,10 @@ import org.schabi.newpipe.extractor.exceptions.ParsingException;
import org.schabi.newpipe.extractor.linkhandler.LinkHandlerFactory; import org.schabi.newpipe.extractor.linkhandler.LinkHandlerFactory;
/** /**
* Tracks don't have standalone ids, they are always in combination with the band id. * <p>Tracks don't have standalone ids, they are always in combination with the band id.
* That's why id = url. Instead, URLs are cleaned up so that they always look the same. * That's why id = url. Instead, URLs are cleaned up so that they always look the same.</p>
* <br/><br/> *
* Radio (bandcamp weekly) shows do have ids. * <p>Radio (bandcamp weekly) shows do have ids.</p>
*/ */
public class BandcampStreamLinkHandlerFactory extends LinkHandlerFactory { public class BandcampStreamLinkHandlerFactory extends LinkHandlerFactory {
@ -43,9 +43,9 @@ public class BandcampStreamLinkHandlerFactory extends LinkHandlerFactory {
* Sometimes, the root page of an artist is also an album or track * Sometimes, the root page of an artist is also an album or track
* page. In that case, it is assumed that one actually wants to open * page. In that case, it is assumed that one actually wants to open
* the profile and not the track it has set as the default one. * the profile and not the track it has set as the default one.
* <br/><br/>Urls are expected to be in this format to account for * <p>Urls are expected to be in this format to account for
* custom domains: * custom domains:</p>
* <br/><code>https:// * . * /track/ *</code> * <code>https:// * . * /track/ *</code>
*/ */
@Override @Override
public boolean onAcceptUrl(String url) { public boolean onAcceptUrl(String url) {