Allows to highlight console color codes using their literal colors.
The change was accepted, e.g. it was in 1.0.3.11. Then it was removed in 1.0.3.12, presumably due to regeneration. Sonar was informed.
# Invoke-Build tasks for markdown files (using MarkdownSharp) | |
# <https://gist.github.com/1223828> | |
<# | |
Task: Convert markdown files to HTML files (using MarkdownSharp). | |
Requires: | |
* MarkdownSharp.dll and its environment variable $env:MarkdownSharp | |
* NuGet install MarkdownDeep.NET | |
* https://github.com/toptensoftware/MarkdownDeep |
# Invoke-Build tasks for markdown files (using Markdown.pl) | |
# <https://gist.github.com/1225405> | |
<# | |
Task: Convert markdown files to HTML files (using Markdown.pl). | |
Requires: | |
* Perl script Markdown.pl <http://daringfireball.net/projects/markdown/> | |
* Either perl executable in the path or the predefined alias 'perl', e.g.: | |
Set-Alias perl "C:\Program Files\Git\bin\perl.exe" |
# Invoke-Build tasks for markdown files (using MarkdownDeep) | |
# <https://gist.github.com/1303971> | |
<# | |
Synopsis: Convert markdown files to HTML files (using MarkdownDeep). | |
Requires: | |
* MarkdownDeep.dll and its environment variable $env:MarkdownDeep | |
* NuGet install MarkdownDeep.NET | |
* https://github.com/toptensoftware/MarkdownDeep |
# Moved to https://github.com/nightroman/FarGit |
# credential file path | |
$CredentialPath = "$PSScriptRoot\credential.clixml" | |
# get and export credential | |
$credential = Get-Credential | |
$credential | Export-Clixml -LiteralPath $CredentialPath | |
# import credential | |
$credential = Import-Clixml -LiteralPath $CredentialPath | |
$credential |
| |
open System | |
open ParserLibrary | |
open ParserLibrary.TextInput | |
[<EntryPoint>] | |
let entry args = | |
let r = run (opt spaces .>>. pint .>>. (manyChars (satisfy (fun _ -> true) "any"))) " -123 Z X" | |
printfn "%A" r | |
r |> printResult |
// sequence of steps | |
type Step = | |
| Next | |
| Ask1 of string ref | |
| Ask2 of string ref | |
let steps = seq { | |
printfn "step 0" |
function prompt | |
{ | |
#! now: last error for the color | |
$color = if ($?) { 10 } else { 12 } | |
# debug | |
if ($ExecutionContext.SessionState.PSVariable.GetValue('PSDebugContext')) { | |
return | |
} |