Giter Club home page Giter Club logo

markdown-everything's Introduction

markdown-everything's People

Contributors

1chooo avatar

Stargazers

 avatar

Watchers

 avatar

markdown-everything's Issues

[Enhancement] code segment in Code Block, Chart

If we start the four ` and end with four ` we can wrap the code block; therefore, we can rewrite the code to suit the markdown language.

<pre><code class=language-markdown>```python
def foo() -> str:
"""
This is a function to return the string 'bar'
Returns:
str: 'bar'
"""
return 'bar'
```
</code></pre>

Change into:

```python
def foo() -> str:
    """
    This is a function to return the string 'bar'
    
    Returns:
        str: 'bar'
    """
    return 'bar'
```

<pre><code class=language-markdown>```markdown <!-- omit in toc -->
---
title: Multistep Processing of a User Program by Hugo <!-- omit in toc -->
---
flowchart-elk LR
A((Source Program)) --> B[Compiler or Assembler]
B[Compiler or Assembler] --> C((Object Module))
C((Object Module)) --> E[Linkage Editor]
D(("`Other
Object
Modules`")) --> E[Linkage Editor]
H((System Library)) --> G[Loader]
G[Loader] --> J[in-memory binary memory image]
I(("`Dynamically
Loaded
System
Library`")) --> J[in-memory binary memory image]
subgraph Compile Time
direction TB
B[Compiler or Assembler]
end
subgraph Load Time
direction TB
E[Linkage Editor] --> F((Load Module))
F((Load Module)) --> G[Loader]
end
subgraph Execution Time
direction TB
J[in-memory binary memory image]
end
```
</code></pre>

Change into:

```mermaid
---
title: Multistep Processing of a User Program by Hugo
---
flowchart-elk LR
    A((Source Program)) --> B[Compiler or Assembler]
    B[Compiler or Assembler] --> C((Object Module))
    C((Object Module)) --> E[Linkage Editor]
    D(("`Other 
    Object 
    Modules`")) --> E[Linkage Editor]
    H((System Library)) --> G[Loader]
    G[Loader] --> J[in-memory binary memory image]
    I(("`Dynamically 
    Loaded 
    System 
    Library`")) --> J[in-memory binary memory image]

    subgraph Compile Time
        direction TB
        B[Compiler or Assembler]
    end
    subgraph Load Time
        direction TB
        E[Linkage Editor] --> F((Load Module))
        F((Load Module)) --> G[Loader]
    end
    subgraph Execution Time
        direction TB
        J[in-memory binary memory image]
    end
```

related: #1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.