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 {
/**
* Get JSON behind <code>var $variable = </code> out of web page
* <br/<br/>
* Originally a part of bandcampDirect.
* <p>Get JSON behind <code>var $variable = </code> out of web page</p>
*
* <p>Originally a part of bandcampDirect.</p>
*
* @param html The HTML where the JSON we're looking for is stored inside a
* 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;
/**
* 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.
* <br/><br/>
* Radio (bandcamp weekly) shows do have ids.
* <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.</p>
*
* <p>Radio (bandcamp weekly) shows do have ids.</p>
*/
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
* 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.
* <br/><br/>Urls are expected to be in this format to account for
* custom domains:
* <br/><code>https:// * . * /track/ *</code>
* <p>Urls are expected to be in this format to account for
* custom domains:</p>
* <code>https:// * . * /track/ *</code>
*/
@Override
public boolean onAcceptUrl(String url) {