This is content converted from Markdown!
Here' a JSON sample:
{
"foo": "bar"
}| <html> | |
| <head> | |
| <style> | |
| h1 { | |
| font-family: Calibri; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> |
| // ==UserScript== | |
| // @name Jira Dark Mode | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Convert Jira to dark mode. | |
| // @author Peter Evans | |
| // @match https://*.atlassian.net/* | |
| // @grant none | |
| // @require https://cdn.walkme.com/player/resources/wmjQuery3315.js | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name K2 - Smartform Designer Rules | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Highlight a rule in K2 Smartforms designer that has the word TEST or FIX as the comment. Also displays the comments below a rule. | |
| // @author Peter Evans | |
| // @match http://example.com/designer/ | |
| // @grant none | |
| // @require https://cdn.walkme.com/player/resources/wmjQuery3315.js | |
| // ==/UserScript== |
| $docListPath = "C:\temp\doclist.txt" | |
| $docList = Get-Content $docListPath | |
| $basePath = "c:\temp\docListOut\" | |
| $word = New-Object -ComObject Word.Application | |
| foreach ($fileName in $docList) | |
| { | |
| $outPath = "$basePath$filename" |