1
0
mirror of synced 2025-12-22 03:16:52 -05:00

Set up foundations for code switcher

This commit is contained in:
Chiedo
2020-10-18 22:03:44 -04:00
parent 797adb1a0d
commit c5a34e49e3
8 changed files with 90 additions and 93 deletions

View File

@@ -20,12 +20,20 @@ A repository owned by a user account has two permission levels: the *repository
#### Code Block Component
<!--react-->
<CodeBlock language="javascript">
{`var i;
<CodeBlock language="javascript"
js={`var i;
for (i = 0; i < cars.length; i++) {
text += cars[i] + "<br>";
}`}
</CodeBlock>
php={`for ($x = 0; $x <= 10; $x++) {
echo "The number is: $x <br>";
}`}
python={`for x in "banana":
print(x)
`}
/>
<!--end-react-->
Organization members can have *owner*{% if currentVersion == "free-pro-team@latest" %}, *billing manager*,{% endif %} or *member* roles. Owners have complete administrative access to your organization{% if currentVersion == "free-pro-team@latest" %}, while billing managers can manage billing settings{% endif %}. Member is the default role for everyone else. You can manage access permissions for multiple members at a time with teams. For more information, see:
@@ -39,10 +47,6 @@ Organization members can have *owner*{% if currentVersion == "free-pro-team@late
<CoolTable />
<!--end-react-->
<!--react--><RedContent>Red content!</RedContent><!--end-react-->
<!--react--><Timer /><!--end-react-->
{% if currentVersion == "free-pro-team@latest" %}
### Enterprise accounts