@@ -121,7 +121,7 @@ earliest and latest possible dates for comparison purposes so you can
121121sort dates and compare with equals, greater than, and less than. You
122122can also compare with python ` datetime.date ` objects.
123123
124- ``` Python console
124+ ``` python
125125>> > november7_2020 = Undate(2020 , 11 , 7 )
126126>> > november_2001 = Undate(2001 , 11 )
127127>> > year2k = Undate(2000 )
@@ -193,7 +193,7 @@ undate.Undate(year=2002, month=5, calendar="Gregorian")
193193undate.Undate(month = 5 , day = 3 , calendar = " Gregorian" )
194194>> > Undate.parse(" --05-03" , " ISO8601" ).format(" EDTF" )
195195' XXXX-05-03'
196- >> > Undate.parse(" 1800/1900" , format = " EDTF" )
196+ >> > Undate.parse(" 1800/1900" , format = " EDTF" )
197197undate.UndateInterval(earliest = undate.Undate(year = 1800 , calendar = " Gregorian" ), latest = undate.Undate(year = 1900 , calendar = " Gregorian" ))
198198```
199199
@@ -233,8 +233,8 @@ undate.Undate(year=2001, calendar="Gregorian")
233233-- -
234234
235235For more examples, refer to the code notebooks included in the
236- [examples](https:// github.com/ dh- tech/ undate- python/ tree/ main/ examples/ ) in this
237- repository.
236+ [examples](https:// github.com/ dh- tech/ undate- python/ tree/ main/ examples/ )
237+ directory in this repository.
238238
239239# # Documentation
240240
0 commit comments