mohamed yahia

Results 4 comments of mohamed yahia

@dcsline there is an easier solution to your problem that will come with the new release of pdf-lib ( look PR NO #986 ). Hopefully, that means that splitting your...

I can make a simple python program to change 'n/a' in the documentation to '-' so it will be less ambiguous if it will help.

Also, I can uniform descriptions of attributes across different components. ### Example before : ![image](https://user-images.githubusercontent.com/67981832/123187427-705b0f00-d49a-11eb-990c-9949897d7f02.png) ![image](https://user-images.githubusercontent.com/67981832/123187453-7bae3a80-d49a-11eb-939b-79d2615edf76.png) ### Become: ![image](https://user-images.githubusercontent.com/67981832/123187427-705b0f00-d49a-11eb-990c-9949897d7f02.png) ![image](https://user-images.githubusercontent.com/67981832/123187427-705b0f00-d49a-11eb-990c-9949897d7f02.png)

@superiums This can be done using Markdowndb's new computed fields feature. For example, the following: ```Typescript function getFirstHeading(fileObject: any, ast: any){ let firstHeading: any = null; // Use unist-util-visit to...