Skip to content

Commit e39c8e4

Browse files
fix: Turtle.get_OffsetPath quoting ( Fixes #130 )
1 parent 48531cd commit e39c8e4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Types/Turtle/get_OffsetPath.ps1

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
"offset-path: $($this.PathData);"
1+
<#
2+
.SYNOPSIS
3+
Gets the Turtle as an OffsetPath
4+
.DESCRIPTION
5+
Gets the Turtle as an offset path.
6+
.LINK
7+
https://developer.mozilla.org/en-US/docs/Web/CSS/offset-path
8+
#>
9+
param()
10+
"offset-path: path('$($this.PathData)');"

0 commit comments

Comments
 (0)