You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix date_time and date_time-package-source links.
* Fix link to source of date_time package.
* Update exercises/practice/gigasecond/.docs/instructions.append.md
Co-authored-by: mk-mxp <55182845+mk-mxp@users.noreply.github.com>
* Remove date-time package source link
Removed link to date-time package source from instructions (as it was only used in admonition).
* Change note about online editor to the new markup.
---------
Co-authored-by: mk-mxp <55182845+mk-mxp@users.noreply.github.com>
Copy file name to clipboardExpand all lines: exercises/practice/gigasecond/.docs/instructions.append.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
## Working with Dates in Prolog
4
4
5
5
Prolog's built-in support for dates is [fairly rudimentary][built-in-dates-support].
6
-
While you can solve this exercise with just what's built into Prolog, a much nicer way to work with dates is via the [date_time package][date_time-package].
6
+
While you can solve this exercise with just what's built into Prolog, a much nicer way to work with dates is via the [date_time package][date-time-package].
7
7
8
8
### Installing the date_time package
9
9
@@ -19,9 +19,9 @@ If that doesn't work, you can run:
19
19
swipl -g 'pack_install(date_time)'
20
20
```
21
21
22
-
```exercism/note
22
+
~~~~exercism/note
23
23
If you're using the online editor, you don't need to manually install anything.
24
-
```
24
+
~~~~
25
25
26
26
### Using the date_time package
27
27
@@ -31,10 +31,11 @@ Ad the following code to the top of your solution file to use the `date_time` pa
31
31
:- use_module(library(date_time)).
32
32
```
33
33
34
-
```exercism/note
35
-
Tip: the [source of the date_time package][https://www.swi-prolog.org/pack/file_details/date_time/prolog/date_time.pl?show=src] is well documented and be a great help!
36
-
```
34
+
~~~~exercism/note
35
+
Tip: the [source of the date_time package][date-time-package-source] is well documented and be a great help!
0 commit comments