├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── posh-to-dash.py ├── requirements.txt ├── screenshots └── posh-docset.PNG └── static ├── DASH_LICENSE ├── Info.plist ├── docset-template ├── README.md └── create-versioned-docset-json.py ├── icon.png └── icon@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/README.md -------------------------------------------------------------------------------- /posh-to-dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/posh-to-dash.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/posh-docset.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/screenshots/posh-docset.PNG -------------------------------------------------------------------------------- /static/DASH_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/DASH_LICENSE -------------------------------------------------------------------------------- /static/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/Info.plist -------------------------------------------------------------------------------- /static/docset-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/docset-template/README.md -------------------------------------------------------------------------------- /static/docset-template/create-versioned-docset-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/docset-template/create-versioned-docset-json.py -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasg/powershell-docset/HEAD/static/icon@2x.png --------------------------------------------------------------------------------