commit | 574ca58f202de2aae6270c57629ef7b1710e1d36 | [log] [tgz] |
---|---|---|
author | Alex Harui <aharui@apache.org> | Thu Mar 08 18:46:01 2018 -0800 |
committer | Alex Harui <aharui@apache.org> | Thu Mar 08 18:46:01 2018 -0800 |
tree | ead303a9c20a75d7936055a0d6d4044bdb9e4b40 | |
parent | 07a8bb73ada025f869df746bd2cee4da45c2f757 [diff] |
start tweaking the migration doc towards having emulation components
We have three main audiences:
We can't assume that everybody understands the conversational shorthand Flex veterans use. Write for a person of good will who is reading to find out, and who wants to get to the next needed nugget of knowledge soon so they can go and make progress on the app they are working on.
Each .md page starts with “front matter” structured like this:
--- # Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. layout: docpage title: README ---
Use HTML comments at the top of the document for any explanatory notes for the doc team (<!-- Not finished yet - Andrew -->
) and for provenance when adapting existing material for Royale purposes (<!-- Created by Peter Ent, modified by Tom Chiverton, as part of FlexJS documentation-->
).
%20
statements, and add the markdown specification. The file name should be “important-thing.md”, not “Another%20Important%20Thing.md”, “AnotherImportantThing.md”, or “Another_important_thing.md”. This is important for SEO, human readability, and readability by assistive devices.In the .md files, links have to be a full path without the leading slash. So to link to the published, HTML, version of /Welcome/Features/AS3.md, you would use
[AS3](Welcome/Features/AS3.html)
without the leading “/”. Links are case-sensitive, and you need to insert %20
for any space that appears in the target file's name. Check the guidance about file names, above.
When linking to locations not in the help-docs stack, including other pages in the Royale website, clicking the link should open a new browser window or tab so the reader does not lose their place in the help docs. If you want to use MarkDown, set the link like this:
[Apache Flex](http://flex.apache.org){:target='_blank'}
You can also use straight HTML for these links, like this:
<a href="http://flex.apache.org" target="_blank">Apache Flex</a>