As answers to this Stack Overflow question
reveal, using <!--- and ---> or <!-- and --> works (view source by clicking "Raw"):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:polyglot_disabled = ['markdown'] | |
| call plug#begin() | |
| " Project | |
| Plug 'ahmedkhalf/project.nvim' | |
| " Search | |
| Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Replaces notepad.exe with notepad++. Here for reference since I can never find it | |
| REM Taken from here: http://blogs.itramblings.com/post/2009/02/08/How-to-replace-notepadexe-on-Windows-Server-2008.aspx | |
| @echo off | |
| echo Create Backup copies of the original notepad.exe | |
| copy C:\Windows\notepad.exe C:\Windows\notepad32.exe | |
| copy C:\Windows\System32\notepad.exe C:\Windows\System32\notepad32.exe | |
| copy C:\Windows\SysWOW64\notepad.exe C:\Windows\SysWOW64\notepad32.exe | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Chocolatey Community Package Maintainers Update - August 2016 | |
| Welcome to the inaugural email update for Chocolatey community package maintainers. We need a way to provide important information to the community maintainers, so we created this list. If you are no longer maintaining packages on Chocolatey.org, simply unsubscribe from future emails at the bottom of this list. Also, you can respond directly to the email if you have questions or concerns. | |
| Checksums Required For All Future Package Approvals | |
| tl;dr - Moving forward packages will not be approved without checksums if they download remote resources (exact date to be determined). This includes trusted packages. | |
| In July 2014 Chocolatey added the ability for package maintainers to provide checksums for downloads. Over the last two years many of you have added checksums to your packages to provide an additional layer of protection for the community, thank you so much for that! We've been planning a move to requiring checksums and were hoping for a gradual |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Cortana Example</title> | |
| <!--Cortana meta tag pointing to VCD file on the server--> | |
| <meta name="msapplication-cortanavcd" content="https://mysite.com/vcd.xml"/> | |
| </head> | |
| <body> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <style> | |
| #header{ | |
| background-color: lightblue; | |
| width:100%; | |
| height:50px; | |
| text-align: center; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Replaces notepad.exe with notepad++. Here for reference since I can never find it | |
| REM Taken from here: http://blogs.itramblings.com/post/2009/02/08/How-to-replace-notepadexe-on-Windows-Server-2008.aspx | |
| @echo off | |
| echo Create Backup copies of the original notepad.exe | |
| copy C:\Windows\notepad.exe C:\Windows\notepad32.exe | |
| copy C:\Windows\System32\notepad.exe C:\Windows\System32\notepad32.exe | |
| copy C:\Windows\SysWOW64\notepad.exe C:\Windows\SysWOW64\notepad32.exe | |