It’s not perfect, but makes the conversion a heck of a lot easier:
to-markdown – an HTML to Markdown converter written in javascript (of which sources are on github).
[Edit 20150919: added more converters: now at least there is competition (:]
Posted by jpluimers on 2014/07/24
It’s not perfect, but makes the conversion a heck of a lot easier:
to-markdown – an HTML to Markdown converter written in javascript (of which sources are on github).
[Edit 20150919: added more converters: now at least there is competition (:]
Posted in Development, JavaScript/ECMAScript, MarkDown, Power User, Scripting, Software Development, Web Development | Leave a Comment »
Posted by jpluimers on 2014/07/24
Late binding sometimes is your friend:
Set objWord = CreateObject("Word.Application")
Wscript.Echo "Version: " & objWord.Version
Wscript.Echo "Build: " & objWord.Build
objWord.Quit
The accompanying Delphi code:
uses System.Win.ComObj; procedure TTestVersionAgnosticWordMainForm.GetWordApplicationInfoButtonClick(Sender: TObject); var WordApplication: OleVariant; Version: OleVariant; Build: OleVariant; begin WordApplication := CreateOleObject('Word.Application'); try try Version := WordApplication.Version; Build := WordApplication.Build; LogMemo.Lines.Add(Version); LogMemo.Lines.Add(Build); finally WordApplication.Quit; end; finally WordApplication := Unassigned; // release it end; end;
–jeroen
Posted in Delphi, Delphi XE, Delphi XE2, Delphi XE3, Delphi XE4, Development, Scripting, Software Development, VBScript | 10 Comments »