fixed markup

This commit is contained in:
Dominik Liebler
2013-09-03 14:47:29 +02:00
parent fe3e846cbe
commit 2ee83307ee

View File

@ -10,39 +10,39 @@ The patterns can be structured in roughly three different categories:
## Creational ## Creational
* (AbstractFactory)[tree/master/AbstractFactory] * [AbstractFactory](tree/master/AbstractFactory)
* (Builder)[tree/master/Builder] * [Builder](tree/master/Builder)
* (SimpleFactory)[tree/master/SimpleFactory] * [SimpleFactory](tree/master/SimpleFactory)
* (FactoryMethod)[tree/master/FactoryMethod] * [FactoryMethod](tree/master/FactoryMethod)
* (StaticFactory)[tree/master/StaticFactory] * [StaticFactory](tree/master/StaticFactory)
* (Prototype)[tree/master/Prototype] * [Prototype](tree/master/Prototype)
* (Singleton)[tree/master/Singleton] (is considered an anti-pattern! :no_entry:) * [Singleton](tree/master/Singleton) (is considered an anti-pattern! :no_entry:)
* (Multiton)[tree/master/Multiton] (is considered an anti-pattern! :no_entry:) * [Multiton](tree/master/Multiton) (is considered an anti-pattern! :no_entry:)
## Structural ## Structural
* (Adapter)[tree/master/Adapter] * [Adapter](tree/master/Adapter)
* (Composite)[tree/master/Composite] * [Composite](tree/master/Composite)
* (Decorator)[tree/master/Decorator] * [Decorator](tree/master/Decorator)
* (Facade)[tree/master/Facade] * [Facade](tree/master/Facade)
* (Proxy)[tree/master/Proxy] * [Proxy](tree/master/Proxy)
* (Registry)[tree/master/Registry] * [Registry](tree/master/Registry)
* (FluentInterface)[tree/master/FluentInterface] * [FluentInterface](tree/master/FluentInterface)
* (DataMapper)[tree/master/DataMapper] * [DataMapper](tree/master/DataMapper)
* (DependencyInjection)[tree/master/DependencyInjection] * [DependencyInjection](tree/master/DependencyInjection)
## Behavioral ## Behavioral
* (ChainOfResponsibilities)[tree/master/ChainOfResponsibilities] * [ChainOfResponsibilities](tree/master/ChainOfResponsibilities)
* (Command)[tree/master/Command] * [Command](tree/master/Command)
* (Iterator)[tree/master/Iterator] * [Iterator](tree/master/Iterator)
* (Mediator)[tree/master/Mediator] * [Mediator](tree/master/Mediator)
* (NullObject)[tree/master/NullObject] * [NullObject](tree/master/NullObject)
* (Observer)[tree/master/Observer] * [Observer](tree/master/Observer)
* (StatusPattern)[tree/master/StatusPattern] * [StatusPattern](tree/master/StatusPattern)
* (Strategy)[tree/master/Strategy] * [Strategy](tree/master/Strategy)
* (TemplateMethod)[tree/master/TemplateMethod] * [TemplateMethod](tree/master/TemplateMethod)
* (Visitor)[tree/master/Visitor] * [Visitor](tree/master/Visitor)
*Please feel free to fork and extend existing or add your own examples!* *Please feel free to fork and extend existing or add your own examples!*