Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

html tag #2

Open
gisma opened this issue Nov 9, 2019 · 2 comments
Open

html tag #2

gisma opened this issue Nov 9, 2019 · 2 comments
Assignees
Labels
invalid This doesn't seem right

Comments

@gisma
Copy link
Contributor

gisma commented Nov 9, 2019

Falls ein HTML Tag für exterene Bilderquellen vorhanden ist wird dieser nicht korrekt umgesetzt. Das Resultat ist wie folgt:

![ ]()
`<a href="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg/640px-Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg?uselang=de" title="View from the west of the Fränkische Schweiz. In the center of the photo you can see the escarpment outlier // Walberla// ">``<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg/640px-Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg?uselang=de" width="250"  alt="Fränkische Schweiz Westrand">``</a>``</a>`
`</html>` 

Lösung: HTML Tags inklusiver der Tags vollständig ohne Änderung übertragen:

<html>
<a href="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg/640px-Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg?uselang=de" title="View from the west of the Fränkische Schweiz. In the center of the photo you can see the escarpment outlier // Walberla// "><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg/640px-Fr%C3%A4nkische-Schweiz-westliche-Kante-16-05-2005.jpeg?uselang=de" width="450"  alt="Fränkische Schweiz Westrand"></a></a>
</html> 

wird zu:

Fränkische Schweiz Westrand
@gisma gisma added the invalid This doesn't seem right label Nov 9, 2019
@gisma
Copy link
Contributor Author

gisma commented Nov 9, 2019

Allerdings sollten die <html> tags um <iframe> tags entfernt werden. Also

<html><iframe src="https://docs.google.com/presentation/d/1jtXgJcNaaiWerBJfGQPJDcvyawSaPiWcMLk_RTcFUG0/embed?start=false&loop=false&delayms=3000" frameborder="0" width="768" height="605" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"> </iframe></html>  

zu

<iframe src="https://docs.google.com/presentation/d/1jtXgJcNaaiWerBJfGQPJDcvyawSaPiWcMLk_RTcFUG0/embed?start=false&loop=false&delayms=3000" frameborder="0" width="768" height="605" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"> 
</iframe> 

@sforteva
Copy link
Collaborator

sforteva commented Nov 15, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right
Projects
None yet
Development

No branches or pull requests

2 participants