26 lines
429 B
Markdown
26 lines
429 B
Markdown
# Modified Time Updater
|
|
|
|
Updates the `Modified` property in the front matter of the current file to the current timestamp.
|
|
|
|
## Example
|
|
|
|
Before:
|
|
|
|
```yaml
|
|
---
|
|
Created: 2023-12-30T00:00:00Z
|
|
Modified: 2026-07-17T19:05:30Z
|
|
---
|
|
```
|
|
|
|
When the **Modified Time Updater** command is executed, the `Modified` field is replaced with the current time.
|
|
|
|
After:
|
|
|
|
```yaml
|
|
---
|
|
Created: 2023-12-30T00:00:00Z
|
|
Modified: 2026-07-17T20:15:42Z
|
|
---
|
|
```
|