Datos obtenidos desde la búsqueda de la palabra "macri" en timeline.boletinoficial.gob.ar El listado de sociedades que se encuentren en esta dataviz no necesariamente tienen relación con Mauricio Macri.
Built with blockbuilder.org
xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.js"></script>
<style>
body { }
input {
border-radius: 5px;
}
tr td, .item {
border-bottom:1pt dashed #ccc;
padding: 10px 0;
}
.row-aviso {
margin: 10px 0;
line-height:22px;
}
.tags {
background:#f0f0f0;
padding: 10px;
border-radius: 5px;
}
.tags .tag{}
/*
.row-aviso:before {
content: '';
display: inline-block;
width: 10px;
height: 10px;
background: #ccc;
border-radius: 50%;
margin-right: 10px;
}
*/
</style>
<title>dataset</title>
</head>
<body>
<div id="app">
<h1>Sociedades donde aparece el apellido MACRI desde 2010</h1>
<br>
<label> Buscar sociedad: <input type="search" v-model="search"></label>
<br><br><br>
<table>
<tr>
<th>Sociedad</th>
<th>avisos.tags</th>
</tr>
<tr v-for="soc in results">
<td>{{soc.razon_social}}</td>
<td>
<div class="item" v-for="item in soc.items">
<div class="row-aviso" v-for="aviso in item.avisos">
<p><strong>Acción:</strong> {{aviso.accion}}</p>
<p><strong>Asuntos:</strong> {{aviso.asuntos.join(" - ")}}</p>
<div class="tags">
<div class="tag" v-if="tag.join('')" v-for="(tag, key) in aviso.tags">
<strong>{{key}}</strong>: {{tag.join(", ")}}
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
<p>Fuente: https://timeline.boletinoficial.gob.ar/#timeline5</p>
</div>
<script>
</script>
</body>
</html>
<script src="main.js"></script>
<script>
/*
https://timeline.boletinoficial.gob.ar/#timeline6
respuesta a la malabra macri en el buscador de sociedades
*/
</script>
https://d3js.org/d3.v4.min.js
https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.js