Skip to content

Commit 3388114

Browse files
committed
docs: add text decoration
1 parent 41ae14a commit 3388114

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

user_guide_src/source/libraries/pagination.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Since the first link displayed is page one, ``hasPrevious()`` would return **fal
239239
getPrevious() & getNext()
240240
-------------------------
241241

242-
These methods return the URL for the previous or next pages of results on either side of the numbered links.
242+
These methods return the **URL** for the previous or next pages of results on either side of the numbered links.
243243

244244
For example, you have the current page set at 5 and you want to have the links before and after (the surroundCount) to be 2 each, that will give you something like this::
245245

@@ -252,7 +252,7 @@ If you want to get page 4 and page 6, use ``getPreviousPage()`` and ``getNextPag
252252
getFirst() & getLast()
253253
----------------------
254254

255-
Much like ``getPrevious()`` and ``getNext()``, these methods return links to the first and last pages in the
255+
Much like ``getPrevious()`` and ``getNext()``, these methods return the **URL** to the first and last pages in the
256256
result set.
257257

258258
links()
@@ -274,14 +274,14 @@ See following an example with these changes:
274274
hasPreviousPage() & hasNextPage()
275275
---------------------------------
276276

277-
This method returns a boolean true if there are links to a page before and after, respectively, the current page being displayed.
277+
This method returns a boolean ``true`` if there are links to a page before and after, respectively, the current page being displayed.
278278

279279
Their difference to ``hasPrevious()`` and ``hasNext()`` is that they are based on the current page while ``hasPrevious()`` and ``hasNext()`` are based on the set of links to be displayed before and after the current page based on the value passed in ``setSurroundCount()``.
280280

281281
getPreviousPage() & getNextPage()
282282
---------------------------------
283283

284-
These methods return a URL for the previous and next pages in relation to the current page being displayed, unlike ``getPrevious()`` and ``getNext()`` that return the URL for the previous or next pages of results on either side of the numbered links. See the previous paragraph for a full explanation.
284+
These methods return a **URL** for the previous and next pages in relation to the current page being displayed, unlike ``getPrevious()`` and ``getNext()`` that return the URL for the previous or next pages of results on either side of the numbered links. See the previous paragraph for a full explanation.
285285

286286
For example, you have the current page set at 5 and you want to have the links before and after (the surroundCount) to be 2 each, that will give you something like this::
287287

0 commit comments

Comments
 (0)