Bulk-extract and save/merge links from PowerPoint/Word as Markdown/Html/Csv!
USAGE:
linx
--c:\deckWithLinks.pptx;c:\docWithLinks.docx;c:\folderWithDocs
--md
(OR) --html
(OR) --csv
Set
linx_exclusions
env-var to exclude links that contain specific keywords (comma-separated). e.g.setx linx_exclusions host1,sub-domain2,someurl.com
PRE-REQ: .NET Core SDK
# Install from nuget.org
dotnet tool install -g linx
# Upgrade to latest version from nuget.org
dotnet tool update -g linx --no-cache
# Install a specific version from nuget.org
dotnet tool install -g linx --version 1.0.x
# Uninstall
dotnet tool uninstall -g linx
NOTE: If the Tool is not accessible post installation, add
%USERPROFILE%\.dotnet\tools
to the PATH env-var.
# Install from local project path
dotnet tool install -g --add-source ./bin linx
# Publish package to nuget.org
nuget push ./bin/Linx.1.0.0.nupkg -ApiKey <key> -Source https://api.nuget.org/v3/index.json