Fix autolinking mess (#469)

Autolinking is messing up the rendered page. This can't be easily fixed. Setting URL's as code seems the best solution.
For reference: https://gist.github.com/alexpeattie/4729247
This commit is contained in:
Michaël Hompus 2020-03-29 23:56:28 +02:00 committed by GitHub
parent bdca58c1c2
commit e64df55e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
FAQ.md
View File

@ -35,7 +35,7 @@ Also Dapr is about more than just actors. It provides you with a set of best pra
Virtual actors capabilities are one of the building blocks that Dapr provides in its runtime. With Dapr because it is programming language agnostic with an http/gRPC API, the actors can be called from any language. This allows actors written in one language to invoke actors written in a different language.
Creating a new actor follows a local call like http://localhost:3500/v1.0/actors/\<actorType>/\<actorId>/…, for example <http://localhost:3500/v1.0/actors/myactor/50/method/getData> to call the `getData` method on the newly created `myactor` with id `50`.
Creating a new actor follows a local call like `http://localhost:3500/v1.0/actors/<actorType>/<actorId>/…`, for example `http://localhost:3500/v1.0/actors/myactor/50/method/getData` to call the `getData` method on the newly created `myactor` with id `50`.
The Dapr runtime SDKs have language specific actor frameworks. The .NET SDK for example has C# actors. The goal is for all the Dapr language SDKs to have an actor framework.