tutorial-cloud/docs/CloudtopiaaInstances/Preface.md
2024-10-25 10:05:08 +05:30

62 lines
1.3 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
sidebar_label: 'Preface'
sidebar_position: 1
---
<!-- truncate -->
import CodeBlock from '@site/src/components/CodeBloack';
# Preface
<div className="head">Document Conventions</div><br/>
<div className="text" style={{ fontSize:'28px' }}>Admonitions and Call-Outs</div>
- **Info**: Additional detail about a topic will be called out with the "info" symbol.
- 💡 **Tip**: Tips and advice will appear with a "lightbulb" admonition.
- ⚠️ **Warning**: Warnings and strong recommendations will appear next to a caution exclamation.
-**Crucial**: Crucial advice and information will appear next to a red exclamation.<br/>
<div className="head">Single-line Commands and Code</div>
<div className="text">If instructed to type a single command, it will be displayed in a monospace font and highlighted like this
example:</div>
<CodeBlock code={`ipa -vvv cert-find --all
`} /><br/>
<div className="head"> Multi-line Commands, Code / File Contents</div>
<div className="text">If instructed to type multi-line commands, create or modify code blocks and or file contents the
information will be monospaced and placed in a callout box like this example:</div>
<CodeBlock code={`require 'sinatra'
get '/hi' do
"Hello World!"
end`} /><br/>