fix: change urls to make export to pdf works

currently, there are a few urls with this pattern /docs/...

when trying to covert to pdf for this docsify project, it fails with such errors:
~~~
ERROR:
combineMarkdowns

Error: file /docs/micro-services/huifer-what's-microservice-how-to-communicate.md is not exist, but listed in summary.md
~~~

by changing "/docs/..." to "./docs/..." the export will work.

What is more, changing of the URLs make URL patterns in summary.md consistent
This commit is contained in:
franklingu 2020-08-30 13:39:28 +08:00 committed by GitHub
parent a5c95cffe3
commit b061955550
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@
- 如何设计一个高可用系统?
- 限流
- [如何限流?说一下具体的实现?](/docs/high-concurrency/huifer-how-to-limit-current.md)
- [如何限流?说一下具体的实现?](./docs/high-concurrency/huifer-how-to-limit-current.md)
- 熔断
- 如何进行熔断?
@ -102,15 +102,15 @@
- [选择微服务部署策略](./docs/micro-services/choose-microservice-deployment-strategy.md)
- Spring Cloud 微服务架构
- [什么是微服务?微服务之间是如何独立通讯的?](/docs/micro-services/huifer-what's-microservice-how-to-communicate.md)
- [什么是微服务?微服务之间是如何独立通讯的?](./docs/micro-services/huifer-what's-microservice-how-to-communicate.md)
- Spring Cloud 和 Dubbo 有哪些区别?
- Spring Boot 和 Spring Cloud谈谈你对它们的理解
- 什么是服务熔断?什么是服务降级?
- 微服务的优缺点分别是什么?说一下你在项目开发中碰到的坑?
- [你所知道的微服务技术栈都有哪些?](/docs/micro-services/huifer-micro-services-technology-stack.md)
- [微服务治理策略](/docs/micro-services/huifer-micro-service-governance.md)
- [你所知道的微服务技术栈都有哪些?](./docs/micro-services/huifer-micro-services-technology-stack.md)
- [微服务治理策略](./docs/micro-services/huifer-micro-service-governance.md)
- Eureka 和 Zookeeper 都可以提供服务注册与发现的功能,它们有什么区别?
- [谈谈服务发现组件 Eureka 的主要调用过程?](/docs/micro-services/how-eureka-enable-service-discovery-and-service-registration.md)
- [谈谈服务发现组件 Eureka 的主要调用过程?](./docs/micro-services/how-eureka-enable-service-discovery-and-service-registration.md)
* 海量数据处理
- 10 道经典的海量数据处理面试题