banner
ximalaya

ximalaya

这里是openkava 的blog,关注程序开发的一切技术。 ZZ 表示转载的文章,如涉及版权,请和我联系删除。 在这里你可以看到关于以下技术的文章: 移动开发技术,ANDROID ,IOS,WINDOWS PHONE平台开发,企业ERP开发,动态脚本PYTHON ,OPENGL ES 3D技术,游戏开发技术,HTML5 ,JAVASCRIPT ,MYSQL,AMAZON EC2 ,GOOGLE GAE ,GOOGLE CLOUD SQL 等 。 本站发展历程: 2010年,正式把所有的blog移到这里,租用godaddy的空间,记录生活和工作上的一些心得。 下面是关于我的个人介绍,写在这里权当凑字数啦。 职业:软件开发,开发经验6年,管理经验3年; 工作上使用的技术:C#, SQL SERVER 个人使用的技术:PYTHON,PHP, CSS, JAVA ,ANDROID ,object-c 等等 联系我请发邮件:<a href="http://blog.openkava.com/openkava@gmail.png"><img class="alignnone size-full wp-image-96" title="邮箱" src="http://blog.openkava.com/openkava@gmail.png" alt="" width="174" height="24" /></a>

markdown

Markdown Syntax Simplified#

Markdown is a lightweight markup language that can be written using a simple text editor. It is known for its readability and ease of writing. Here are some commonly used Markdown syntax:

Headings
Insert one or more # symbols at the beginning of a line to indicate a heading. The number of # symbols represents the heading level, with 1-6 # symbols used for levels 1-6.

Example:

Heading 1#

Heading 2#

Heading 3#

Heading 4#

Heading 5#
Heading 6#

Lists
Use * or - symbols for unordered lists, and numbers followed by a period for ordered lists. There should be one or more spaces between the list item and the symbol.

Example:

  • Unordered list item 1
  • Unordered list item 2
  • Unordered list item 3
  1. Ordered list item 1
  2. Ordered list item 2
  3. Ordered list item 3

Bold and Italic
Text wrapped in ** will be displayed in bold, and text wrapped in * will be displayed in italic.

Example:

This is bold text
This is italic text

Links and Images
Use link text for links, and ![image description](image URL) for images.

Example:

Google
Image description

Blockquotes
Use the > symbol at the beginning of a line to indicate a blockquote.

Example:

This is a blockquote.
This is the second line of the blockquote.

Code Blocks
Use backticks (`) to indicate short code blocks, and three backticks (```) to indicate long code blocks.

Example:

print("Hello, world!")

def greet(name):
    print("Hello, " + name + "!")

greet("Alice")
greet("Bob")

These are some basic Markdown syntax that you can use to create beautiful documents.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.