What is the markdown syntax for .NET Core templating
问题 I have a .NET Core template and wondering how I can hide partial content from markdown file based on the flags set? As you may see below I tried what I do in CS project files but it didn't work. README.md # Steps - createSolutionFile.ps1 <!--#if (CacheSqlServer)--> - sql-cache.ps1 1. create database `DistributedCache` 2. create schema `cache` 3. run the script <!--#endif--> - user-secrets.ps1 <!--#if (EntityFramework)--> - scaffold.ps1 - migrate.ps1 <!--#endif--> - build.ps1 <!--#if