Skip to content

Commit

Permalink
- Adding $timesecond Special Identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Olivo committed Nov 2, 2024
1 parent 0960457 commit e775256
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions MixItUp.Base/Util/SpecialIdentifierStringBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ public async Task ReplaceCommonSpecialModifiers(CommandParametersModel parameter
this.ReplaceSpecialIdentifier("timedigits", DateTimeOffset.Now.ToString("HHmm"));
this.ReplaceSpecialIdentifier("timehour", DateTimeOffset.Now.ToString("HH"));
this.ReplaceSpecialIdentifier("timeminute", DateTimeOffset.Now.ToString("mm"));
this.ReplaceSpecialIdentifier("timesecond", DateTimeOffset.Now.ToString("ss"));
this.ReplaceSpecialIdentifier("time", DateTimeOffset.Now.ToString("t"));
this.ReplaceSpecialIdentifier("linebreak", Environment.NewLine);

Expand Down

0 comments on commit e775256

Please sign in to comment.