SolidifyDemo / recator-modern-dev-gh

0 stars 0 forks source link

A new Feature #21

Open MOlausson opened 1 year ago

MOlausson commented 1 year ago

Introduction

Solution

Some basic Git commands are:

git status
git add
git commit
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
### Tasks
- [ ] https://github.com/SolidifyDemo/recator-modern-dev-gh/issues/22
- [ ] https://github.com/SolidifyDemo/recator-modern-dev-gh/issues/23
- [ ] https://github.com/SolidifyDemo/recator-modern-dev-gh/issues/24
MOlausson commented 1 year ago

@MOlausson look at this.

MOlausson commented 1 year ago

---
title: Animal example
---
classDiagram
    note "From Duck till Zebra"
    Animal <|-- Duck
    note for Duck "can fly\ncan swim\ncan dive\ncan help in debugging"
    Animal <|-- Fish
    Animal <|-- Zebra
    Animal : +int age
    Animal : +String gender
    Animal: +isMammal()
    Animal: +mate()
    class Duck{
        +String beakColor
        +swim()
        +quack()
    }
    class Fish{
        -int sizeInFeet
        -canEat()
    }
    class Zebra{
        +bool is_wild
        +run()
    }
MOlausson commented 1 year ago

22 may be a duplicate?