This is my directory structure:
doc/
├─ image.png
src/
README.md
I'm trying to center and resize a logo image on the top of the README file, just like I'm used to do on GitHub (using HTML tags), but I just can't make it work on Azure's Repos.
So far, this is what I tried:
<p align="center">
<a target="blank"><img src="doc/image.png" width="30%" /></a>
</p>
<center>
![image.png](doc/image.png)
</center>
And some other variations of those... I've found some answers on the internet, but none of them seems to work to me.
Related
I'm using opencart 3.0.2 and when i change twig files it doesn't appear on site for example there is a code like this:
<div class="compare">
<button type="button" title="{{ button_compare }}" onclick="compare.add('{{ product.product_id }}');"<span>{{ button_compare }}</span></button>
</div>
and I delete this code from file but it doesn't make any change on the site.
How can I resize image when I upload with ImageField by protecting aspect ratio of image.
Example: (Width x Height) from 1100x600 to 550x300
And, is it possible with [ImageKit] ? https://github.com/matthewwithanm/django-imagekit
You can use easy-thumbnails package for optimizing images.
Just follow these steps:
First install easy-thumbnails package using command:
pip install easy-thumbnails
Go to settings.py file and add easy_thumbnails to the INSTALLED_APPS setting as like:
INSTALLED_APPS = [
# ...
'easy_thumbnails',
]
Run this command to apply changes in database
python manage.py migrate
Now go to your template and replace the line(as I supposed):
<img src="{{ image.image.url }}">
To the following lines:
{% load thumbnail %}
<img src="{% thumbnail image.image 550x300 %}"
I have a directory called "features" in the root and inside this directory has image "state_transitation.JPG" and document "myMdc_features.md"
I am trying to add an image "state_transitation.JPG" to the md extension document "myMdc_features.md" in my repository by using markdown below:
![alt text](./state_transitation.JPG)
![alt text](/state_transitation.JPG)
![alt text](state_transitation.JPG)
<p>
<img src="state_transitation.JPG" />
</p>
I tried all above options but this is giving page could not be found error. 404
Both myMdc_features.md and image file are in same path/directory.
What is the correct way to display an image in gitlab myMdc_features.md?
I think that the first option should work, assuming they are in the same folder. I made an example repostiory here that works.
Source of the file:
Hello World
![](./i-have-no-idea-what-im-doing.jpg)
Output in GitLab:
I am currently working on graphviz in linux environment and i am new to linux.
By using the below command i am trying to generate an svg file from the below listed input dot file.(i have installed graphviz 2.38.0) and the current user is having full access to the machine.
dot -Tsvg -o Check_Svg.svg Check_Svg.txt
Check_Svg.txt
digraph g {
graph[size="15,5" nodesep=1 ranksep=1 ];
node[color="#56B9F9" shape="oval" style="filled" penwidth="2.5" fontname="Helvitica-Outline" fontsize="25" ];
edge[penwidth="2.5" fontsize="30" ];
Example_01[fontcolor="white" color="#56B9F9" label=<<table border="0"><tr> <td>Example_Application</td></tr><tr><td>Case1</td></tr><tr><td>Case2</td></tr></table>> fontsize=35 ];
Example_02[color="#FDC12E" label=<<table border="0"><tr><td>Example_02</td></tr><tr> <td>Case2</td></tr></table>>];
Example_01->Example_02[label=<<table border="0"><tr><td>Example_01 to Example_02</td> </tr><tr><td>1 Relationship</td></tr></table>> headport="nw" ];
{
rank="max"
Legend [color="#96B9F9" fontsize="30" ,shape=none, margin=0, label=<
<TABLE COLOR="BLACK" BORDER="1" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4">
<TR>
<TD> ( ) </TD>
<TD align="left"> Cases </TD>
</TR>
<TR>
<TD> * </TD>
<TD align="left"> Relationship </TD>
</TR>
</TABLE>
>];
}
}
When i executed the command to generate a svg output from a dot file, i am getting the below error.
Warning: Not built with libexpat. Table formatting is not available.
in label of node Example_01
in label of node Example_02
in label of node Legend
in label of edge Example_01 -> Example_02
The output svg file is getting created, but wrongly. Instead of the html label, the node name itself is coming in the diagram.
The output svg from the above dot file
I have installed libexpat, in my linux machine, at /usr/local/lib.
Please suggest me how to invoke the libexpat, so that i can generate the actual output from my linux environment.
Thanks in advance !!!
Configure first sees if the expat-config program is in your path.
If not, it tries building against the library with
the various user-supplied -I and -L paths. If it still can't find your
libexpat, you can use the --with-expatincludedir
and --with-expatlibdir to specify where the include file and library reside.
Obviously, all this depends on having libexpat installed. You'll need to
find it, or just install it yourself.
By the way, you needn't configure, build and run to check for a missing
feature. When configure finishes, it should
list which optional pieces are available.
Hiii, i got the answer for my above question.
Actually for linking a library to one particular application, we need to install that library before the installation of the application.
So here i installed expat-2.0.1 and then installed graphviz2.38.0 and the issue is sorted out.
Thank you !!
Directory structure :
Main directory structure
home.php
thankyou.php
Php directory structure
root directory/php/date.php
Include directory structure
root directory/include/header.php
root directory/include/footer.php
Images directory structure
root directory/images/logo.png
root directory/images/abc.jpg
For date.php, i want to use header and footer.php files. but images are not shown.
i written below code
<?php require_once '../include/header.php';?>
But when i used for home and thankyou.php, It is working fine.
In header file, code for images
<img src="images/logo.png" alt="Logo" class="image">
i dont want to change directory for date.php. And not interested to absolute path for images.
What to do so that images will be see in both directory()
i Used base html tag as doubleui told me in head section
<head>
<base href="root directory/images/" target="_blank">
</head>