-
-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Command is adding a line break #92
Comments
I had the same problem in Bash script but fixed it by changing In PowerShell I'm not sure how to do that right now, but these links have some starting points. How do I output text without a newline in PowerShell? - Stack Overflow |
Thank you @luckman212 You are right,
It was not necessary to add this command in the old version, but now it works. Thanks)) |
Hey @icr1001 as @luckman212 said, it's not a bug in Templater. |
Thanks for this amazing plugin!!!
Describe the bug
Multiple user commands in one line is adding a line break after each command.
For example:
Day 1: <% tp.user.tp_1ofweek %>, Day 2: <% tp.user.tp_2ofweek() %>
**Expecting result **
Day 1: Result 1, Day 2: Result 2
** Current result **
Day 1: Result 1
, Day 2: Result 2
Additional information
User commands:
powershell (Get-Date (Get-Date).Date.AddDays(1 - (Get-Date).Date.DayOfWeek.value__) -UFormat '%Y-%m-%d(%a)')
powershell (Get-Date (Get-Date).Date.AddDays(2 - (Get-Date).Date.DayOfWeek.value__) -UFormat '%Y-%m-%d(%a)')
The text was updated successfully, but these errors were encountered: