@@ -17,7 +17,7 @@ database by creating and interacting with DataJoint classes.
1717
1818The table class must inherit from one of the following superclasses to indicate its
1919data tier: ` dj.Lookup ` , ` dj.Manual ` , ` dj.Imported ` , ` dj.Computed ` , or ` dj.Part ` .
20- See :ref: ` tiers ` and :ref: ` master-part ` .
20+ See [ tiers] ( tiers.md ) and [ master-part] ( ./master-part.md ) .
2121
2222### Defining a table
2323
@@ -26,11 +26,11 @@ To define a DataJoint table in Python:
26261 . Define a class inheriting from the appropriate DataJoint class: ` dj.Lookup ` ,
2727` dj.Manual ` , ` dj.Imported ` or ` dj.Computed ` .
2828
29- 2 . Decorate the class with the schema object (see :ref: ` schema ` )
29+ 2 . Decorate the class with the schema object (see [ schema] ( ../schema.md ) )
3030
31313 . Define the class property ` definition ` to define the table heading.
3232
33- For example, the following code defines the table `` Person ` ` :
33+ For example, the following code defines the table ` Person ` :
3434
3535``` python
3636import datajoint as dj
@@ -53,7 +53,8 @@ definition property.
5353The decorator attaches the information about the table to the class, and then returns
5454the class.
5555
56- The class will become usable after you define the ` definition ` property as described in :ref:` definitions ` .
56+ The class will become usable after you define the ` definition ` property as described in
57+ [ Table definition] ( #table-definition ) .
5758
5859#### DataJoint classes in Python
5960
@@ -168,7 +169,8 @@ Each line can be one of the following:
168169
169170- The optional first line starting with a ` # ` provides a description of the table's purpose.
170171 It may also be thought of as the table's long title.
171- - A new attribute definition in any of the following forms (see :ref:` datatypes ` for valid datatypes):
172+ - A new attribute definition in any of the following forms (see
173+ [ Attributes] ( ./attributes.md ) for valid datatypes):
172174 `` name : datatype ``
173175 `` name : datatype # comment ``
174176 `` name = default : datatype ``
0 commit comments