We use a strict file naming convention that clearly identifies topics and that contributes towards discoverability on the web.
Here's what you need to know:
- File names can contain ONLY lowercase letters, numbers, and hyphens.
- No spaces or punctuation characters. Use the hyphens to separate words and numbers in the file name.
- No more than 80 characters - this is a publishing system limit
- Use action verbs that are specific, such as develop, buy, build, troubleshoot. No -ing words.
- No small words - don't include a, and, the, in, or, etc.
- All files must be in markdown and use the .md file extension.
- Spell the words out; avoid unapproved or unnecessary acronyms in file names
Acronyms and initialisms in file names - specific guidelines:
- Do not abbreviate Azure service names - the first words of the file name should be the standard, spelled out Azure service or technology name.
- Do not allow rm or arm as acronyms anywhere in a file name
- Other industry-standard abbreviations are acceptable as necessary in file names.
Here's the general pattern:
service-platform-language-content-product-version.md
Use the parts of the pattern that apply, and review the list of articles in the repository to get an idea of existing names. Names that don't start with a dev platform or a service name are probably suspect and slipped through.
Here are a few examples of valid names that follow the pattern. :
- cloud-services-dotnet-continuous-delivery.md
- mobile-services-ios-get-started.md
- documentdb-manage-account.md
- mobile-services-dotnet-backend-get-started-settings-sync.md
- active-directory-java-authenticate-users-access-control-eclipse.md
- virtual-machines-install-windows-server-2008r2.md
- cache-aspnet-session-state-provider
- azure-sdk-dotnet-release-notes-2-8
- storsimple-disaster-recovery-using-azure-site-recovery
To distinguish content that focuses on partner contributions to the Azure marketplace, start the file names with "marketplace". This content should not be too common, as most partner content should be created on the partners' own web sites.
- marketplace-mongodb-virtual-machines-install-windows-server-2008r2.md
It's the job of our group of pull request reviewers to review file names when a new file is submitted to the repository for the first time. Pull request reviewers should review the file name and provide feedback via the pull request comment stream if changes are needed. The file name needs to be corrected before the pull request is accepted. Contributors can easily push the update to the pending pull request.
Folders should be created only for services, and the file name should match the ACOM service slug. Use only letters and hyphens, and use all lowercase letters. Obtain approval from the repository admin before you create a new folder that is not for a released service.
Windows operating systems are case insensitive, so if you need to change a file name to fix casing, it is better to make a substantive change, unless you are able to make the change on a Linux or Mac. For example:
biztalk-administration-and-Development-Task-List-in-BizTalk-Services --> biztalk-services-administration-and-development-task-list
Use the following command to rename a file:
git mv <articles/service-folder/current-file-name.md> <articles/service-folder/new-file-name>