You could make each line a separate comment. Like this :
(* https://mathematica.stackexchange.com/questions/159808/commutator-of-gamma-matrices *)
(* https://mathworld.wolfram.com/DiracMatrices.html *)
(* https://en.wikipedia.org/wiki/Gamma_matrices *)
Table[Internal`DiracGammaMatrix[k, "Basis" -> "Chiral"] // MatrixForm, {k, 4}]
Table[Internal`DiracGammaMatrix[k, "Basis" -> "Dirac"] // MatrixForm, {k, 4}]
Table[Internal`DiracGammaMatrix[k, "Basis" -> "Majorana"] // MatrixForm, {k, 4}]
If you copy this snippet to a notebook you have to add a line feed feed after each comment line.