New answers tagged history
0
Here's a start:
nb = EvaluationNotebook[] (* or NotebookOpen["file.nb"] or whatever *)
SetOptions[#, CellChangeTimes -> {}] & /@ Cells[nb]
This nixes all the times. Of course one could do the following
SetOptions[#, CellChangeTimes -> f[#]] & /@ Cells[nb]
where f computes the cell change times you wish to keep, perhaps using ...
Top 50 recent answers are included